项目目录优化,任务模块后端代码

This commit is contained in:
PandaGoAdmin
2021-12-23 17:23:27 +08:00
parent 0caf81660c
commit 21ff92a93c
67 changed files with 802 additions and 206 deletions

View File

@@ -4,9 +4,11 @@ import (
"fmt"
ginSwagger "github.com/swaggo/gin-swagger"
"github.com/swaggo/gin-swagger/swaggerFiles"
logRouter "pandax/apps/log/router"
sysRouter "pandax/apps/system/router"
"pandax/base/config"
"pandax/middleware"
sysRouter "pandax/system/router"
_ "pandax/docs"
@@ -67,7 +69,7 @@ func InitRouter() *gin.Engine {
//日志系统
log := router.Group("log")
{
sysRouter.InitLogRouter(log)
logRouter.InitLogRouter(log)
}
return router
}