完善生成模版,调整目录

This commit is contained in:
xh
2025-06-25 01:31:34 +08:00
parent cf4e879fe2
commit 915bcfe22c
35 changed files with 57 additions and 67 deletions
@@ -0,0 +1,32 @@
package commonController
import (
"x_admin/core/response"
"x_admin/middleware"
"x_admin/service/commonService"
"github.com/gin-gonic/gin"
)
func IndexRoute(rg *gin.RouterGroup) {
handle := indexHandler{}
rg = rg.Group("/common", middleware.TokenAuth())
rg.GET("/index/console", handle.console)
rg.GET("/index/config", handle.config)
}
type indexHandler struct{}
// console 控制台
func (ih indexHandler) console(c *gin.Context) {
res, err := commonService.IndexService.Console()
response.CheckAndRespWithData(c, res, err)
}
// config 公共配置
func (ih indexHandler) config(c *gin.Context) {
res, err := commonService.IndexService.Config()
response.CheckAndRespWithData(c, res, err)
}