1
1
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-11-26 04:19:41 +01:00
wg-gen-web/api/api.go

15 lines
246 B
Go
Raw Normal View History

2020-01-30 07:45:49 +01:00
package api
import (
"github.com/gin-gonic/gin"
2021-04-06 14:23:23 +02:00
"github.com/vx3r/wg-gen-web/api/v1"
2020-01-30 07:45:49 +01:00
)
2020-06-10 09:52:44 +02:00
// ApplyRoutes apply routes to gin engine
2020-04-28 13:11:49 +02:00
func ApplyRoutes(r *gin.Engine, private bool) {
api := r.Group("/api")
2020-01-30 07:45:49 +01:00
{
2020-04-28 13:11:49 +02:00
apiv1.ApplyRoutes(api, private)
}
}