mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-05 08:07:06 +08:00
12 lines
147 B
Go
12 lines
147 B
Go
package generator
|
|
|
|
import (
|
|
"x_admin/generator/gen"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func RegisterGroup(rg *gin.RouterGroup) {
|
|
gen.GenRoute(rg)
|
|
}
|