28 lines
794 B
Go
28 lines
794 B
Go
// Code generated by hertz generator. DO NOT EDIT.
|
|
|
|
package api_service
|
|
|
|
import (
|
|
api_service "gitea.micah.wiki/pandora/starter/biz/handler/api_service"
|
|
"github.com/cloudwego/hertz/pkg/app/server"
|
|
)
|
|
|
|
/*
|
|
This file will register all the routes of the services in the master idl.
|
|
And it will update automatically when you use the "update" command for the idl.
|
|
So don't modify the contents of the file, or your code will be deleted when it is updated.
|
|
*/
|
|
|
|
// Register register routes based on the IDL 'api.${HTTP Method}' annotation.
|
|
func Register(r *server.Hertz) {
|
|
|
|
root := r.Group("/", rootMw()...)
|
|
{
|
|
_openapi := root.Group("/openapi", _openapiMw()...)
|
|
{
|
|
_health := _openapi.Group("/health", _healthMw()...)
|
|
_health.GET("/ping", append(_pingMw(), api_service.Ping)...)
|
|
}
|
|
}
|
|
}
|