Files
proxy/server/web/auth/auth.go

11 lines
138 B
Go
Raw Normal View History

2025-02-19 14:23:58 +08:00
package auth
import "github.com/gin-gonic/gin"
type Config struct {
}
func Apply(r *gin.Engine, config *Config) {
r.Use(middleware)
}