Dmitri 4565a728a5
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m38s
dependecy injection uber to the win
2026-04-20 21:28:36 +02:00

15 lines
290 B
Go

package http
import (
"git.kanopo.dev/rhythm/rhythm-backend/internal/http/api/health"
"github.com/gin-gonic/gin"
)
func GlueRoutes(r *gin.Engine, healthHandler *health.Handler) {
api := r.Group("/api")
healthHandler.RegisterRoutes(api.Group("/health"))
// v1 := api.Group("/v1")
}