Files
go-ohif-proxy/internal/api/handlers/healthcheck.go
2025-04-07 11:14:18 +07:00

13 lines
202 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
// HealthCheck is a simple health check handler
func HealthCheck(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"status": "ok"})
}