mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-16 18:47:10 +02:00
mcp: scaffolding of /.pomerium/mcp routes (#5580)
This commit is contained in:
parent
cb0e8aaf06
commit
f1a9401ddc
7 changed files with 100 additions and 0 deletions
10
internal/mcp/handler_authorization.go
Normal file
10
internal/mcp/handler_authorization.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package mcp
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// Authorize handles the /authorize endpoint.
|
||||
func (srv *Handler) Authorize(w http.ResponseWriter, _ *http.Request) {
|
||||
w.WriteHeader(http.StatusNotImplemented)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue