feat(auth): Add OAuth2 authentication

This commit is contained in:
Björn Benouarets
2026-01-27 16:35:46 +01:00
commit 50c85e9b7f
36 changed files with 1599 additions and 0 deletions

13
secnex/cli.py Normal file
View 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")