Skip to content

Commit ba738df

Browse files
committed
New create-index command
1 parent f028c6b commit ba738df

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ cabal.sandbox.config
2727
/snapshot.yaml
2828
/stack-ci.yaml
2929
/*.gz
30+
/*.idx
31+

app/App/Commands.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
module App.Commands where
22

33
import App.Commands.Count
4+
import App.Commands.CreateIndex
45
import App.Commands.Demo
5-
import Data.Semigroup ((<>))
6+
import Data.Semigroup ((<>))
67
import Options.Applicative
78

89
commands :: Parser (IO ())
@@ -12,4 +13,5 @@ commandsGeneral :: Parser (IO ())
1213
commandsGeneral = subparser $ mempty
1314
<> commandGroup "Commands:"
1415
<> cmdCount
16+
<> cmdCreateIndex
1517
<> cmdDemo

0 commit comments

Comments
 (0)