package server import ( "dymatrix.de/jspahl/todo/internal/api" "github.com/gin-gonic/gin" ) func registerRoutes(router *gin.Engine) { router.RedirectTrailingSlash = true memory := router.Group("/memory") { api.RegisterRoutes(memory) } sql := router.Group("/sql") { api.RegisterRoutes(sql) } }