mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-01-14 00:57:17 +08:00
14 lines
245 B
Go
14 lines
245 B
Go
package v1
|
|
|
|
import (
|
|
"megrez/routers/api/v1/admin"
|
|
"megrez/routers/api/v1/user"
|
|
|
|
"github.com/kataras/iris/v12/core/router"
|
|
)
|
|
|
|
func InitApiV1(party router.Party) {
|
|
admin.InitAdmin(party.Party("/admin"))
|
|
user.InitUser(party.Party("/user"))
|
|
}
|