init(all):一个让codex调用deepseek模型的项目

This commit is contained in:
Pine
2026-05-25 16:37:47 +08:00
commit e6ab2d4534
23 changed files with 2028 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""路由注册入口
参照 PineSoundDesktop 项目结构,通过 register_routes() 统一注册所有路由。
"""
from .proxy import router
def register_routes(app):
"""注册所有 API 路由"""
app.include_router(router)