mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-09-26 20:21:19 +08:00
32 lines
628 B
Go
32 lines
628 B
Go
package index
|
|
|
|
import (
|
|
"x_admin/core/response"
|
|
"x_admin/middleware"
|
|
|
|
"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 := Service.Console()
|
|
response.CheckAndRespWithData(c, res, err)
|
|
}
|
|
|
|
// config 公共配置
|
|
func (ih indexHandler) config(c *gin.Context) {
|
|
res, err := Service.Config()
|
|
response.CheckAndRespWithData(c, res, err)
|
|
}
|