mirror of
https://github.com/wso2/open-mcp-auth-proxy.git
synced 2025-06-27 17:13:31 +00:00
10 lines
266 B
Go
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
|
|
}
|