aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-21 09:40:40 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-21 09:40:40 +0100
commit24f720801ece36ab13c6acc159b7cb0d05136840 (patch)
tree61db07abde4c2c285a0c1518cedb9b570a2f3f5b /scripts
parentbb97d461aa1c229152b337d466fb2089ef1861ef (diff)
Add indexing command
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lesana3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lesana b/scripts/lesana
index 0cc8a0e..3886f52 100755
--- a/scripts/lesana
+++ b/scripts/lesana
@@ -1,12 +1,13 @@
#!/usr/bin/env python3
import gadona
-from lesana.command import New
+from lesana.command import New, Index
if __name__ == '__main__':
app = gadona.App()
app.description = "Manage collections"
app.commands = [
New(),
+ Index(),
]
app.main()