12 lines
160 B
Go
12 lines
160 B
Go
|
|
package controllers
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
func HealthCheck(c *gin.Context) {
|
||
|
|
c.JSON(http.StatusOK, gin.H{"health": "ready"})
|
||
|
|
}
|