完成基础脚手架

This commit is contained in:
LeeX
2022-05-09 09:00:14 +08:00
parent 632c76dfa6
commit 5fd8e0a694
37 changed files with 2867 additions and 0 deletions

18
api/admin/user.go Normal file
View File

@@ -0,0 +1,18 @@
package admin
import (
"ginDemo/core"
"github.com/gin-gonic/gin"
)
type userApi struct{}
// UserApi 角色接口工厂函数
func UserApi() *userApi {
return &userApi{}
}
// GetUser 获取当前登录用户信息
func (u userApi) GetUser(ctx *gin.Context) {
core.R(ctx).OkWithData("Lee")
}