package middleware import ( "github.com/gin-gonic/gin" ) func CheckLogin() gin.HandlerFunc { return func(ctx *gin.Context) { // 前置中间件 ctx.Next() } }