mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-18 04:15:37 +01:00
11 lines
190 B
Go
11 lines
190 B
Go
package create
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
type CreateUserRouter struct{}
|
|
|
|
// Init : Init Router
|
|
func (ctrl CreateUserRouter) Init(g *echo.Group) {
|
|
g.POST("", ctrl.CreateUser)
|
|
}
|