gohttpserver/internal/handlers/now.go

16 lines
271 B
Go
Raw Normal View History

package handlers
2020-10-05 13:15:32 +00:00
import (
"net/http"
"time"
)
func (s *Handlers) HandleNow() http.HandlerFunc {
2020-10-05 13:15:32 +00:00
type response struct {
Now time.Time `json:"now"`
}
return func(w http.ResponseWriter, r *http.Request) {
s.respondJSON(w, r, &response{Now: time.Now()}, 200)
}
}