From c655a9bf0755967d7b748afb8bbb53df117eac24 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Mon, 28 Mar 2016 00:04:01 +0800 Subject: [PATCH] update text. Signed-off-by: Bo-Yi Wu --- gorush/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gorush/server.go b/gorush/server.go index 3ab04fc..9bf5b74 100644 --- a/gorush/server.go +++ b/gorush/server.go @@ -18,7 +18,7 @@ func AbortWithError(c *gin.Context, code int, message string) { func rootHandler(c *gin.Context) { c.JSON(http.StatusOK, gin.H{ - "text": "Welcome to golang push server.", + "text": "Welcome to notification server.", }) } @@ -35,7 +35,7 @@ func pushHandler(c *gin.Context) { pushNotification(form) c.JSON(http.StatusOK, gin.H{ - "text": "Welcome to golang push server.", + "text": "Welcome to notification server.", }) }