From 86be8c2a530f0e404c1853ad51b5ee189b373d68 Mon Sep 17 00:00:00 2001 From: gahusb Date: Wed, 15 Apr 2026 08:24:14 +0900 Subject: [PATCH] =?UTF-8?q?feat(lotto):=20curator/briefing=20=EB=9D=BC?= =?UTF-8?q?=EC=9A=B0=ED=84=B0=20=EB=A7=88=EC=9A=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/main.py | 4 ++++ 1 file changed, 4 insertions(+) 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")