Files
david 336b21a835 Initial bootrap of application
- Creates scaffold for router and server
- Main program set up for environment, OS signal listener
- Makefile generic commands
2021-06-17 17:06:21 -04:00

14 lines
261 B
Go

package http
import "net/http"
func (s *server) handleHealth(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
return
}
func (s *server) handleReadiness(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
return
}