mirror of
https://github.com/countbot-ai/CountBot.git
synced 2026-09-14 20:46:47 +08:00
92b985ef59
- FastAPI 应用入口与数据库初始化 - 数据模型(会话、消息、设置、任务、定时任务) - REST API 接口(聊天、渠道、设置、工具、技能等) - WebSocket 连接管理与流式推送 - 日志系统与进程管理工具
6 lines
121 B
Python
6 lines
121 B
Python
"""认证 API - 转发到 auth 模块的 router"""
|
|
|
|
from backend.modules.auth.router import router
|
|
|
|
__all__ = ["router"]
|