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