pomerium/internal/mcp/handler_token.go
2025-04-23 12:36:31 -04:00

10 lines
187 B
Go

package mcp
import (
"net/http"
)
// Token handles the /token endpoint.
func (srv *Handler) Token(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusNotImplemented)
}