summaryrefslogtreecommitdiff
path: root/view/version.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-23 20:34:57 +0200
committerxengineering <me@xengineering.eu>2024-10-23 20:34:57 +0200
commite66691083a2455c29b50a2970c0aba1d6afca753 (patch)
tree1f3192351038693b5fc219148fbc39cf2e869a87 /view/version.go
parent9d14fee31507551149dcdf31c59798624330f3f3 (diff)
downloadceres-e66691083a2455c29b50a2970c0aba1d6afca753.tar
ceres-e66691083a2455c29b50a2970c0aba1d6afca753.tar.zst
ceres-e66691083a2455c29b50a2970c0aba1d6afca753.zip
Switch to http.Handler
The used `func(http.ResponseWriter, *http.Request)` return values made the HTTP handler factory functions quite unreadable. Thus it is switched to the http.Handler type.
Diffstat (limited to 'view/version.go')
-rw-r--r--view/version.go18
1 files changed, 10 insertions, 8 deletions
diff --git a/view/version.go b/view/version.go
index faf91b1..337200e 100644
--- a/view/version.go
+++ b/view/version.go
@@ -5,13 +5,15 @@ import (
"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
- }
+func VersionRead(version string) http.Handler {
+ return http.HandlerFunc(
+ 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)
- }
+ fmt.Fprintln(w, version)
+ },
+ )
}