summaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
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 49aa290..5fdd128 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -22,6 +22,7 @@ import System.IO
import Command
import Command.Checkout
import Command.JobId
+import Command.Log
import Command.Run
import Config
import Output
@@ -88,6 +89,7 @@ commands =
( SC $ Proxy @RunCommand) NE.:|
[ SC $ Proxy @CheckoutCommand
, SC $ Proxy @JobIdCommand
+ , SC $ Proxy @LogCommand
]
lookupCommand :: String -> Maybe SomeCommandType