mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-09 22:33:11 +02:00
11 lines
304 B
Go
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)
|
|
}
|