diff --git a/backend/app/main.py b/backend/app/main.py index ce8aca0..c47153c 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -41,8 +41,12 @@ from .strategy_evolver import ( get_weights_with_trend, recalculate_weights, generate_smart_recommendation, ) +from .routers import curator as curator_router +from .routers import briefing as briefing_router app = FastAPI() +app.include_router(curator_router.router) +app.include_router(briefing_router.router) scheduler = BackgroundScheduler(timezone=os.getenv("TZ", "Asia/Seoul")) ALL_URL = os.getenv("LOTTO_ALL_URL", "https://smok95.github.io/lotto/results/all.json")