goweb/middlewares/auth.go

10 lines
105 B
Go

package middlewares
import (
"github.com/gin-gonic/gin"
)
func Auth(ctx *gin.Context) {
ctx.Next()
}