package router import ( "github.com/gin-gonic/gin" "github.com/iliadenisov/galaxy/internal/router/handler" ) func SetupRouter(e handler.CommandExecutor) *gin.Engine { return setupRouter(e) }