Created
September 8, 2020 21:34
-
-
Save leonmwandiringa/fcc810dd951a1b209ab9d6a0276f85c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package handlers | |
import ( | |
"github.com/gin-gonic/gin" | |
) | |
func IsApplicationWorking(c *gin.Context){ | |
c.JSON(200, gin.H{ | |
"error": nil, | |
"status": "sucess", | |
"message" : "Indeed its is working" | |
}) | |
return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment