mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
10 lines
118 B
Go
10 lines
118 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Init(router *gin.RouterGroup) {
|
|
InitMsgRouter(router)
|
|
}
|