mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-03 10:30:19 +00:00
11 lines
150 B
Go
11 lines
150 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
)
|
|
|
|
func (s *Server) echoHeadersHandler(w http.ResponseWriter, r *http.Request) {
|
|
s.JSONResponse(w, r, r.Header)
|
|
}
|