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

10 lines
199 B
Go

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