mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
9 lines
157 B
Go
9 lines
157 B
Go
package mcp
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (srv *Handler) OAuthCallback(w http.ResponseWriter, _ *http.Request) {
|
|
w.WriteHeader(http.StatusNotImplemented)
|
|
}
|