1
1
Fork 0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-05-07 23:06:03 +02:00
wg-gen-web/api/api.go
2021-04-06 14:23:23 +02:00

15 lines
246 B
Go

package api
import (
"github.com/gin-gonic/gin"
"github.com/vx3r/wg-gen-web/api/v1"
)
// ApplyRoutes apply routes to gin engine
func ApplyRoutes(r *gin.Engine, private bool) {
api := r.Group("/api")
{
apiv1.ApplyRoutes(api, private)
}
}