summaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2025-03-23 12:40:53 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2025-03-29 19:16:37 +0100
commitf3dbad3df9f8c9c1aca873d74a34c6f9169133b0 (patch)
tree93d4a0114962c4062f5c6398aeb975a2f64da0e9 /src/Main.hs
parenta372c8cf51bce6179fe0d585a545b7f4f3910233 (diff)
Evaluate canonical job ids
Changelog: Added `jobid` command resolving job reference to canonical id
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main.hs b/src/Main.hs
index f98b274..9e9214f 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -19,6 +19,7 @@ import System.IO
import Command
import Command.Checkout
+import Command.JobId
import Command.Run
import Config
import Repo
@@ -73,6 +74,7 @@ commands :: NE.NonEmpty SomeCommandType
commands =
( SC $ Proxy @RunCommand) NE.:|
[ SC $ Proxy @CheckoutCommand
+ , SC $ Proxy @JobIdCommand
]
lookupCommand :: String -> Maybe SomeCommandType