mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-02 18:10:20 +00:00
16 lines
289 B
Go
16 lines
289 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/stefanprodan/k8s-podinfo/pkg/version"
|
|
)
|
|
|
|
func (s *Server) versionHandler(w http.ResponseWriter, r *http.Request) {
|
|
result := map[string]string{
|
|
"version": version.VERSION,
|
|
"commit": version.REVISION,
|
|
}
|
|
s.JSONResponse(w, r, result)
|
|
}
|