This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
myappziugv/routers/health.go

12 lines
134 B
Go

package routers
import (
"github.com/gin-gonic/gin"
)
func HealthGET(c *gin.Context) {
c.JSON(200, gin.H{
"status": "UP",
})
}