blob: faf91b14b28c9972521d5f2939aa0b3b52dc683f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package view
import (
"fmt"
"net/http"
)
func VersionRead(version string) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
if version == "" {
http.Error(w, "This build has no version information", http.StatusNotFound)
return
}
fmt.Fprintln(w, version)
}
}
|