企業內部新聞彙整與分析系統 - 自動新聞抓取 (Digitimes, 經濟日報, 工商時報) - AI 智慧摘要 (OpenAI/Claude/Ollama) - 群組管理與訂閱通知 - 已清理 Python 快取檔案 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
760 B
Python
27 lines
760 B
Python
"""
|
|
API v1 路由總管理
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import auth, users, groups, reports, subscriptions, settings as settings_ep
|
|
|
|
api_router = APIRouter()
|
|
|
|
# 認證
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Auth"])
|
|
|
|
# 用戶管理
|
|
api_router.include_router(users.router, prefix="/users", tags=["Users"])
|
|
|
|
# 群組管理
|
|
api_router.include_router(groups.router, prefix="/groups", tags=["Groups"])
|
|
|
|
# 報告管理
|
|
api_router.include_router(reports.router, prefix="/reports", tags=["Reports"])
|
|
|
|
# 訂閱管理
|
|
api_router.include_router(subscriptions.router, prefix="/subscriptions", tags=["Subscriptions"])
|
|
|
|
# 系統設定
|
|
api_router.include_router(settings_ep.router, prefix="/settings", tags=["Settings"])
|