From b29c64023ff409f9a3e80d138b523da57e19a905 Mon Sep 17 00:00:00 2001 From: Howl Date: Sun, 10 Apr 2016 23:18:56 +0200 Subject: [PATCH] Ooops, it was status --- app/internals/status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/internals/status.go b/app/internals/status.go index a5d4a94..59acf1e 100644 --- a/app/internals/status.go +++ b/app/internals/status.go @@ -6,12 +6,12 @@ import ( ) type statusResponse struct { - Response int `json:"response"` + Status int `json:"status"` } // Status is used for checking the API is up by the ripple website, on the status page. func Status(c *gin.Context) { c.JSON(200, statusResponse{ - Response: 1, + Status: 1, }) }