diff --git a/main.go b/main.go index 522b5ef..9347f55 100644 --- a/main.go +++ b/main.go @@ -32,6 +32,6 @@ func HomeHandler(w http.ResponseWriter, r *http.Request) { func TimeHandler(w http.ResponseWriter, r *http.Request) { now := time.Now() - res := now.GoString() + res := now.Format(time.RFC3339Nano) fmt.Fprint(w, res) }