open-mcp-auth-proxy-upstream/internal/authz/provider.go
Thilina Shashimal Senarath 4e957e93a2 improve readme
2025-04-02 18:22:36 +05:30

10 lines
266 B
Go

package authz
import "net/http"
// Provider is an interface describing how each auth provider
// will handle /.well-known/oauth-authorization-server and /register
type Provider interface {
WellKnownHandler() http.HandlerFunc
RegisterHandler() http.HandlerFunc
}