feat(auth): Add OAuth2 authentication
This commit is contained in:
13
secnex/cli.py
Normal file
13
secnex/cli.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user