Files
galaxy-game/internal/router/router_export_test.go
T
Ilia Denisov d9c8de27e5 refactor: executors and routers
* refactor: executors and routers
2026-02-09 15:53:34 +03:00

11 lines
196 B
Go

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)
}