pomerium/internal/mcp/handler_connect.go
2025-05-01 15:02:28 -04:00

11 lines
304 B
Go

package mcp
import (
"net/http"
)
// Connect is a helper method for MCP clients to ensure that the current user
// has an active upstream Oauth2 session for the route.
func (srv *Handler) Connect(w http.ResponseWriter, _ *http.Request) {
http.Error(w, "not implemented", http.StatusNotImplemented)
}