mcp: scaffolding of /.pomerium/mcp routes (#5580)

This commit is contained in:
Denis Mishin 2025-04-23 12:36:31 -04:00 committed by GitHub
parent cb0e8aaf06
commit f1a9401ddc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 100 additions and 0 deletions

View 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)
}