15 lines
222 B
Go

package controller
import (
"github.com/gin-gonic/gin"
"hospital-admin-api/api/responses"
)
type Menu struct{}
// GetMenuList 获取菜单列表
func (r *Menu) GetMenuList(c *gin.Context) {
responses.Ok(c)
return
}