Update the easter egg

This commit is contained in:
Justin Li 2014-07-23 00:12:29 -04:00
parent 7400792cc4
commit 8625c4b3c4

View file

@ -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
}