mcp: scaffolding of /.pomerium/mcp routes

This commit is contained in:
Denis Mishin 2025-04-22 18:39:07 -04:00
parent ba03bb732b
commit a76dafd4b1
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)
}