mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
9 lines
141 B
Go
9 lines
141 B
Go
package router
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func Init(router *gin.RouterGroup) {
|
|
InitDbRouter(router)
|
|
InitDbSqlExecRouter(router)
|
|
}
|