mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-03 18:40:21 +00:00
12 lines
152 B
Go
12 lines
152 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"os"
|
|
)
|
|
|
|
func (s *Server) envHandler(w http.ResponseWriter, r *http.Request) {
|
|
s.JSONResponse(w, r, os.Environ())
|
|
}
|