forked from lxh/go-wxhelper
14 lines
219 B
Go
14 lines
219 B
Go
|
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)
|
||
|
}
|