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.
1 parent 551d65b commit 2ce0292Copy full SHA for 2ce0292
minos/cli/api/__init__.py
@@ -3,7 +3,6 @@
3
from ..consoles import (
4
console,
5
)
6
-from .deploy import app as deploy_app
7
from .init import app as init_app
8
from .new import app as new_app
9
from .set import app as set_app
@@ -12,7 +11,6 @@
12
11
app = typer.Typer(add_completion=False)
13
app.add_typer(init_app, name="init")
14
app.add_typer(new_app, name="new")
15
-app.add_typer(deploy_app, name="deploy")
16
app.add_typer(utils_app, name="utils")
17
app.add_typer(set_app, name="set")
18
0 commit comments