16 lines
271 B
Go
16 lines
271 B
Go
|
package httpserver
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func (s *server) handleNow() http.HandlerFunc {
|
||
|
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)
|
||
|
}
|
||
|
}
|