aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Main.hs12
1 files changed, 11 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index 9d9c5dc..68cef7c 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -1,6 +1,16 @@
module Main where
-import Options.Applicative
+import Options.Applicative ( Parser
+ , (<**>)
+ , command
+ , execParser
+ , fullDesc
+ , info
+ , header
+ , helper
+ , progDesc
+ , subparser
+ )
newtype Arguments = Arguments { command' :: Command }