13 lines
174 B
Go
13 lines
174 B
Go
package routes
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func (s *Server) HandleHealth(w http.ResponseWriter, r *http.Request) error {
|
|
fmt.Fprint(w, "Up and running!")
|
|
|
|
return nil
|
|
}
|