vspd/router.go
jholdstock 1c72b8f1e5 init
2020-05-13 17:08:02 +01:00

19 lines
208 B
Go

package main
import (
"github.com/gin-gonic/gin"
)
func newRouter() *gin.Engine {
router := gin.Default()
api := router.Group("/api")
api.Use()
{
router.GET("/payfee", payFee)
}
return router
}