commit 609683b878213c5d93d085730b48197e7977305d
parent 9aa0c1a031d4c72d045b553a215d776994a9b4ee
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Fri, 6 Dec 2019 23:34:05 +0100
update python CLI
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/sandbox/src/main/python/libeufin-cli b/sandbox/src/main/python/libeufin-cli
@@ -28,6 +28,10 @@ def cli(ctx, base_url, bank_base_url):
def ebics():
pass
+@cli.group()
+def nonebics():
+ pass
+
@ebics.command(help="Restore private keys backup.")
@click.pass_obj
@click.option(
@@ -295,7 +299,7 @@ def new(obj, user_id, partner_id, system_id, host_id, ebics_url):
print(resp.content.decode("utf-8"))
-@ebics.command(help="Ask the balance for a given customer of the bank")
+@nonebics.command(help="Ask the balance for a given customer of the bank")
@click.pass_obj
@click.option(
"--user-id",