12 lines
186 B
Go
12 lines
186 B
Go
package servers
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func RegisterServersRoutes(l *gin.Engine, baseUrl string) {
|
|
|
|
s := l.Group(baseUrl + "/api/v1")
|
|
s.GET("/servers", getServers)
|
|
}
|