11 lines
207 B
Go
11 lines
207 B
Go
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 })
|
|
}
|