We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f028c6b + ba738df commit 3b04169Copy full SHA for 3b04169
.gitignore
@@ -27,3 +27,5 @@ cabal.sandbox.config
27
/snapshot.yaml
28
/stack-ci.yaml
29
/*.gz
30
+/*.idx
31
+
app/App/Commands.hs
@@ -1,8 +1,9 @@
1
module App.Commands where
2
3
import App.Commands.Count
4
+import App.Commands.CreateIndex
5
import App.Commands.Demo
-import Data.Semigroup ((<>))
6
+import Data.Semigroup ((<>))
7
import Options.Applicative
8
9
commands :: Parser (IO ())
@@ -12,4 +13,5 @@ commandsGeneral :: Parser (IO ())
12
13
commandsGeneral = subparser $ mempty
14
<> commandGroup "Commands:"
15
<> cmdCount
16
+ <> cmdCreateIndex
17
<> cmdDemo
0 commit comments