7455d7e426
130 issues auto-fixed (import ordering, UP045/UP006 type annotations), 33 issues manually fixed (E712/E501/E402/E722 + N818 rename + per-file wechat ignore for N8xx naming conventions). All 33 tests pass.
11 lines
409 B
Python
11 lines
409 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api import announcements, crawl, wechat
|
|
from app.api import scheduler as scheduler_module
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(announcements.router, tags=["announcements"])
|
|
api_router.include_router(crawl.router, tags=["crawl"])
|
|
api_router.include_router(wechat.router, tags=["wechat"])
|
|
api_router.include_router(scheduler_module.router)
|