You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
378 B

3 years ago
  1. package system
  2. import (
  3. "gin-vue-admin/api/v1"
  4. "github.com/gin-gonic/gin"
  5. )
  6. type InitRouter struct {
  7. }
  8. func (s *InitRouter) InitInitRouter(Router *gin.RouterGroup) {
  9. initRouter := Router.Group("init")
  10. var dbApi = v1.ApiGroupApp.SystemApiGroup.DBApi
  11. {
  12. initRouter.POST("initdb", dbApi.InitDB) // 创建Api
  13. initRouter.POST("checkdb", dbApi.CheckDB) // 创建Api
  14. }
  15. }