Skip to content

Instantly share code, notes, and snippets.

@leonmwandiringa
Created September 8, 2020 21:34
Show Gist options
  • Save leonmwandiringa/fcc810dd951a1b209ab9d6a0276f85c3 to your computer and use it in GitHub Desktop.
Save leonmwandiringa/fcc810dd951a1b209ab9d6a0276f85c3 to your computer and use it in GitHub Desktop.
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