diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-01-14 10:30:18 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-01-14 10:30:18 +0100 |
commit | 1ab41af4cdce777c3f5b0e0f985e5846999b9010 (patch) | |
tree | 42b7deb2a3f8adfe94e6132b000aced95ebc0a48 /scripts | |
parent | bb451cf5ab9f3db35c91b79c0f2bbdc27a29a0e1 (diff) |
New command: remove
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 da9b833..02403dc 100755 --- a/scripts/lesana +++ b/scripts/lesana @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import guacamole -from lesana.command import New, Edit, Index, Search, Init +from lesana.command import New, Edit, Index, Search, Init, Remove class Lesana(guacamole.Command): """ @@ -14,6 +14,7 @@ class Lesana(guacamole.Command): ('index', Index), ('search', Search), ('init', Init), + ('rm', Remove), ) if __name__ == '__main__': |