go webserver template added
Some checks failed
Update Child Repos / update (push) Failing after 1m2s

This commit is contained in:
2025-12-17 10:49:43 +01:00
parent 9cbfd850bc
commit 8d1555249a
11 changed files with 319 additions and 0 deletions

7
routes.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "github.com/gorilla/mux"
func (s *WebServer) Routes(r *mux.Router) {
r.HandleFunc("/version", handleVersion).Methods("GET")
}