1 Star 1 Fork 1

xiaoyutab / xgotool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
must-login.go 267 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoyutab 提交于 2023-12-07 16:35 . 添加xgin.MustLogin中间件
package xgin
import "github.com/gin-gonic/gin"
// 登录认证中间件
//
// 用于鉴定uint类型的uid大于0
func MustLogin(c *gin.Context) {
if c.GetUint("uid") == 0 {
// 未登录
c.AbortWithStatusJSON(200, Resp().ErrorLogin().GetData())
}
c.Next()
}
Go
1
https://gitee.com/xiaoyutab/xgotool.git
git@gitee.com:xiaoyutab/xgotool.git
xiaoyutab
xgotool
xgotool
v0.3.9

搜索帮助