Files
cli/secnex/cli.py
2026-01-27 16:35:46 +01:00

13 lines
417 B
Python

import typer
from secnex.app import auth_app, application_app, config_app, query_app, tenant_app, utils_app, user_app
app = typer.Typer()
app.add_typer(config_app, name="config")
app.add_typer(auth_app, name="auth")
app.add_typer(query_app, name="query")
app.add_typer(tenant_app, name="tenant")
app.add_typer(application_app, name="app")
app.add_typer(utils_app, name="utils")
app.add_typer(user_app, name="user")