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,9 @@
package mcp
import (
"net/http"
)
func (srv *Handler) OAuthCallback(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusNotImplemented)
}