aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-19 22:12:58 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-19 22:12:58 +0100
commitc22d66b350db2e213cc916fae4f6207440a9be4f (patch)
treed5863b0eb1b97b154a714dbacecf326655293d9d /scripts
parent1c587b319a308a877608531961491f1dbb79317b (diff)
Create new empty entry, also from the command line
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lesana15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/lesana b/scripts/lesana
new file mode 100755
index 0000000..64cbc17
--- /dev/null
+++ b/scripts/lesana
@@ -0,0 +1,15 @@
+#!/usr/bin/env python3
+
+import gadona
+from lesana.command import New
+
+if __name__ == '__main__':
+ app = gadona.App()
+ app.description = "Manage collections"
+ app.commands = [
+ New(),
+ ]
+ app.main()
+
+
+