server: changed endpoint from /status to /configurator/status

This commit is contained in:
David Allen 2025-01-07 13:27:17 -07:00
parent ba3690cb5d
commit 6b0ed4c03d
Signed by: towk
GPG key ID: 793B2924A49B3A3F

View file

@ -125,7 +125,7 @@ func (s *Server) Serve() error {
} }
// always available public routes go here (none at the moment) // always available public routes go here (none at the moment)
router.HandleFunc("/status", s.GetStatus) router.HandleFunc("/configurator/status", s.GetStatus)
s.Handler = router s.Handler = router
return s.ListenAndServe() return s.ListenAndServe()