package router import ( "github.com/gin-gonic/gin" "github.com/iliadenisov/galaxy/internal/model/rest" ) func SetupRouter() *gin.Engine { return setupRouter(func(c rest.Command) error { return nil }) }