We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f215bc + 7acb1ea commit b71f903Copy full SHA for b71f903
minos/cli/api/__init__.py
@@ -6,13 +6,11 @@
6
from ..consoles import (
7
console,
8
)
9
-from .init import app as init_app
10
from .new import app as new_app
11
from .set import app as set_app
12
from .utils import app as utils_app
13
14
app = typer.Typer(add_completion=False)
15
-app.add_typer(init_app, name="init")
16
app.add_typer(new_app, name="new")
17
app.add_typer(utils_app, name="utils")
18
app.add_typer(set_app, name="set")
minos/cli/api/init.py
tests/test_cli/test_api/test_init.py
0 commit comments