Files
go-skeleton/routes/rest/example_rest.go
T
Hericium-sys 62b87c6002 init
2026-04-25 13:26:02 +08:00

19 lines
294 B
Go

package rest
import (
"skeleton/modules/example"
"github.com/gin-gonic/gin"
)
func init() {
RegisterPublic(registerExampleRoutes)
}
func registerExampleRoutes(r *gin.RouterGroup) {
ctrl := example.NewExampleController()
group := r.Group("/example")
group.GET("/hello", ctrl.Hello)
}