Files
proxy/server/web/auth/auth.go
2025-02-24 14:35:13 +08:00

11 lines
138 B
Go

package auth
import "github.com/gin-gonic/gin"
type Config struct {
}
func Apply(r *gin.Engine, config *Config) {
r.Use(middleware)
}