diff --git a/twvdscli.py b/twvdscli.py index 1e1ce1f..98b7f99 100755 --- a/twvdscli.py +++ b/twvdscli.py @@ -404,6 +404,9 @@ def get_balance(): @dbs_app.command("create") def dbs_create(passwd: str = typer.Option(..., help="DB password"), name: str = typer.Option(..., help="DB Name"), db_type: str = typer.Option(..., help="mysql5/mysql/postgres")): + """ + Create database + """ # service_type == 341 - mysql # service_type == 357 - pgsql result = Dbaas.create(passwd=passwd, name=name, db_type=db_type)