opus / internal /handler /health.go
llzai's picture
Upload 28 files
80ffd2e verified
raw
history blame contribute delete
206 Bytes
package handler
import (
"github.com/gin-gonic/gin"
"net/http"
)
// HandleHealth handles GET /health
func HandleHealth(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"status": "ok",
})
}