mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
23 lines
521 B
Go
23 lines
521 B
Go
|
package version
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/http"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
// New creates a handler that returns the version of the service in JSON format.
|
||
|
func New(ver string) http.Handler {
|
||
|
var body, _ = json.Marshal(struct { //nolint:errchkjson
|
||
|
Version string `json:"version"`
|
||
|
}{
|
||
|
Version: strings.TrimSpace(ver),
|
||
|
})
|
||
|
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||
|
w.WriteHeader(http.StatusOK)
|
||
|
_, _ = w.Write(body)
|
||
|
})
|
||
|
}
|