Template updates (commit: 11682a3)
All checks were successful
Push to GitHub / mirror (push) Successful in 4s

This commit is contained in:
2025-12-31 23:14:22 +01:00
parent bdb0084f72
commit 7f09e3dae1
10 changed files with 313 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")
}