operations

This commit is contained in:
JiriUhlir
2026-05-29 10:44:25 +02:00
parent 3804bb32c4
commit 6e5d9b3120
4 changed files with 323 additions and 1 deletions
+2 -1
View File
@@ -5,7 +5,7 @@ from fastapi.staticfiles import StaticFiles
from starlette.middleware.sessions import SessionMiddleware
from .config import read_env_value
from .routes import apps, audit, auth, backups, deployments, health, jobs, workers
from .routes import apps, audit, auth, backups, deployments, health, jobs, operations, workers
def create_app() -> FastAPI:
@@ -27,6 +27,7 @@ def create_app() -> FastAPI:
app.include_router(apps.router)
app.include_router(backups.router)
app.include_router(deployments.router)
app.include_router(operations.router)
app.include_router(jobs.router)
app.include_router(workers.router)
app.include_router(audit.router)