package routes import ( "easywish/internal/controllers" "github.com/gin-gonic/gin" ) func SetupRoutes(r *gin.Engine) *gin.Engine { // Healthcheck routes serviceGroup := r.Group("/service") { serviceGroup.GET("/health", controllers.HealthCheck) } return r }