mirror of
https://github.com/quarkcloudio/quark-go.git
synced 2025-09-27 04:15:54 +08:00
17 lines
324 B
Go
17 lines
324 B
Go
// Code generated by hertz generator. DO NOT EDIT.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/cloudwego/hertz/pkg/app/server"
|
|
router "github.com/quarkcloudio/quark-go/v2/examples/hertzadmin/biz/router"
|
|
)
|
|
|
|
// register registers all routers.
|
|
func register(r *server.Hertz) {
|
|
|
|
router.GeneratedRegister(r)
|
|
|
|
customizedRegister(r)
|
|
}
|