- 从服务器拉取完整代码 - 按框架规范整理项目结构 - 配置 Drone CI 测试环境部署 - 包含后端(FastAPI)、前端(Vue3)、管理端 技术栈: Vue3 + TypeScript + FastAPI + MySQL
9 lines
222 B
Python
9 lines
222 B
Python
"""
|
|
管理员相关API模块
|
|
"""
|
|
from .student_scores import router as student_scores_router
|
|
from .student_practice import router as student_practice_router
|
|
|
|
__all__ = ["student_scores_router", "student_practice_router"]
|
|
|