diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-12-31 14:21:56 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-12-31 14:21:56 +0100 |
commit | 5e63c3127cd82a187fdb6c227e5e0538212763b2 (patch) | |
tree | 29ff4b4bab075d7bca8d24ffa36c4d27fff8e030 /scripts | |
parent | 42531b8d4e8735a5cc44220a38d51540f6882242 (diff) |
lesana init: new command
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/lesana | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lesana b/scripts/lesana index a452c64..a500bb8 100755 --- a/scripts/lesana +++ b/scripts/lesana @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import gadona -from lesana.command import New, Edit, Index, Search +from lesana.command import New, Edit, Index, Search, Init if __name__ == '__main__': app = gadona.App() @@ -11,5 +11,6 @@ if __name__ == '__main__': Edit(), Index(), Search(), + Init(), ] app.main() |