// Code scaffolded by goctl. Safe to edit. // goctl 1.10.0 package middleware import "net/http" type AdminLoginRateLimitMiddleware struct { } func NewAdminLoginRateLimitMiddleware() *AdminLoginRateLimitMiddleware { return &AdminLoginRateLimitMiddleware{} } func (m *AdminLoginRateLimitMiddleware) Handle(next http.HandlerFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { // TODO generate middleware implement function, delete after code implementation // Passthrough to next handler if need next(w, r) } }