feat: add scheduler and flower monitoring with worker registry

This commit is contained in:
chengkai3
2026-05-01 20:59:12 +08:00
parent 6dc386e752
commit 0019aa0fba
31 changed files with 2341 additions and 583 deletions
+10
View File
@@ -0,0 +1,10 @@
from fastapi import FastAPI
from .api.v1.scheduler import router as scheduler_router
app = FastAPI(
title="fquiz-scheduler",
version="0.1.0",
)
app.include_router(scheduler_router, prefix="/api/v1")