All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m38s
15 lines
290 B
Go
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")
|
|
|
|
}
|