8f982278d2
* add multimodule * re-package modules
12 lines
230 B
Go
12 lines
230 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/iliadenisov/galaxy/server/internal/router/handler"
|
|
)
|
|
|
|
func SetupRouter(e handler.CommandExecutor) *gin.Engine {
|
|
gin.SetMode(gin.TestMode)
|
|
return setupRouter(e)
|
|
}
|