From 8625c4b3c45f90191d7a5e65f60553706587a267 Mon Sep 17 00:00:00 2001 From: Justin Li Date: Wed, 23 Jul 2014 00:12:29 -0400 Subject: [PATCH] Update the easter egg --- http/routes.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/routes.go b/http/routes.go index 5256c63..bdb07b4 100644 --- a/http/routes.go +++ b/http/routes.go @@ -20,8 +20,7 @@ import ( const jsonContentType = "application/json; charset=UTF-8" func (s *Server) check(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) { - _, err := w.Write([]byte("An easter egg goes here.")) - if err != nil { + if _, err := w.Write([]byte("STILL-ALIVE")); err != nil { return http.StatusInternalServerError, err }