aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorBrad Richardson <brichardson@structint.com>2020-02-25 14:27:08 -0800
committerBrad Richardson <brichardson@structint.com>2020-02-25 14:27:08 -0800
commit2573315e014303cda41682003bafa7e0a6f00167 (patch)
treed687dafa03f3fecc4715b3581dd96e36aac786b4 /app
parent5d38dffc1023cef688e055019fa2569618cf1a4d (diff)
downloadfpm-2573315e014303cda41682003bafa7e0a6f00167.tar.gz
fpm-2573315e014303cda41682003bafa7e0a6f00167.zip
Add explicit import
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 }