wip
This commit is contained in:
parent
a9ee4a2bd8
commit
d68cda91cf
22 changed files with 824 additions and 55 deletions
|
|
@ -5,6 +5,7 @@ from typer.main import get_group
|
|||
from learn_sql_model.cli.api import api_app
|
||||
from learn_sql_model.cli.config import config_app
|
||||
from learn_sql_model.cli.hero import hero_app
|
||||
from learn_sql_model.cli.model import model_app
|
||||
|
||||
app = typer.Typer(
|
||||
name="learn_sql_model",
|
||||
|
|
@ -12,7 +13,7 @@ app = typer.Typer(
|
|||
)
|
||||
app.add_typer(config_app, name="config")
|
||||
# app.add_typer(tui_app, name="tui")
|
||||
# app.add_typer(model_app, name="model")
|
||||
app.add_typer(model_app, name="model")
|
||||
app.add_typer(api_app, name="api")
|
||||
app.add_typer(hero_app, name="hero")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue