summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-12-15 19:02:10 +0100
committerMS <ms@taler.net>2020-12-15 19:02:10 +0100
commit013d0f4f9115d146bbe301bf48f3096e3b7dda1c (patch)
tree261e0f98dee78a867ccc3833c769ff233d19d44a /cli
parent9b2effe15fe0af376e486dd979122eab4c1ab63e (diff)
downloadlibeufin-013d0f4f9115d146bbe301bf48f3096e3b7dda1c.tar.gz
libeufin-013d0f4f9115d146bbe301bf48f3096e3b7dda1c.tar.bz2
libeufin-013d0f4f9115d146bbe301bf48f3096e3b7dda1c.zip
CLI: scheduling commands skeletons.
Diffstat (limited to 'cli')
-rwxr-xr-xcli/libeufin-cli16
1 files changed, 16 insertions, 0 deletions
diff --git a/cli/libeufin-cli b/cli/libeufin-cli
index b388263c..f90dfb43 100755
--- a/cli/libeufin-cli
+++ b/cli/libeufin-cli
@@ -226,6 +226,22 @@ def list_offered_bank_accounts(obj, connection_name):
exit(1)
print(resp.content.decode("utf-8"))
+@accounts.command(help="Schedules a new task")
+def task_schedule():
+ pass
+
+@accounts.command(help="Shows the status of one task")
+def task_status():
+ pass
+
+@accounts.command(help="Deletes one task")
+def task_delete():
+ pass
+
+@accounts.command(help="Shows all the active tasks")
+def tasks_show():
+ pass
+
@accounts.command(help="show accounts belonging to calling user")
@click.pass_obj
def show(obj):