go-wxhelper/router/admin/menu.go

14 lines
219 B
Go
Raw Normal View History

2024-01-19 12:06:30 +08:00
package admin
import (
"github.com/gin-gonic/gin"
menuApi "wechat-robot/api/admin/menu"
)
// menu
// @description: 菜单相关
// @param g
func menu(g *gin.RouterGroup) {
g.GET("/self", menuApi.GetUserMenuTree)
}