mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-15 17:22:56 +02:00
11 lines
245 B
Go
11 lines
245 B
Go
package mcp
|
|
|
|
const (
|
|
DefaultPrefix = "/.pomerium/mcp"
|
|
|
|
authorizationEndpoint = "/authorize"
|
|
oauthCallbackEndpoint = "/oauth/callback"
|
|
registerEndpoint = "/register"
|
|
revocationEndpoint = "/revoke"
|
|
tokenEndpoint = "/token"
|
|
)
|