package router import ( "github.com/gin-gonic/gin" "synoth.com/janus/internal/handler" ) func SetUp(router *gin.Engine, h *handler.HealthHandler) { router.GET("/api/health", h.Check) }