router.go 432 B

1234567891011121314151617181920212223242526272829
  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. func RouterEntry(engine *gin.Engine) {
  6. routerPlus := NewRouterPlus(engine)
  7. // 授权
  8. Auth(routerPlus)
  9. // 用户模块
  10. User(routerPlus)
  11. // 学期
  12. Term(routerPlus)
  13. // 班级
  14. Class(routerPlus)
  15. // 题库
  16. QuestionBank(routerPlus)
  17. // 试题
  18. Subject(routerPlus)
  19. // 试卷
  20. TestPaper(routerPlus)
  21. // 考试
  22. Exam(routerPlus)
  23. // 考试记录
  24. ExamRecord(routerPlus)
  25. }