project map script | semantic parcer

This commit is contained in:
2026-01-01 16:58:21 +03:00
parent a747a163c8
commit 4c6fc8256d
84 changed files with 10178 additions and 537 deletions

View File

@@ -31,6 +31,7 @@ app = FastAPI(
description="API for managing Superset automation tools and plugins.",
version="1.0.0",
)
# [/DEF:App:Global]
# Startup event
@app.on_event("startup")
@@ -124,8 +125,7 @@ async def websocket_endpoint(websocket: WebSocket, task_id: str):
logger.error(f"WebSocket error for task {task_id}: {e}")
finally:
task_manager.unsubscribe_logs(task_id, queue)
# [/DEF]
# [/DEF:WebSocketEndpoint:Endpoint]
# [DEF:StaticFiles:Mount]
# @SEMANTICS: static, frontend, spa
@@ -149,4 +149,6 @@ else:
@app.get("/")
async def read_root():
return {"message": "Superset Tools API is running (Frontend build not found)"}
# [/DEF]
# [/DEF:RootEndpoint:Endpoint]
# [/DEF:StaticFiles:Mount]
# [/DEF:AppModule:Module]