mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
17 lines
223 B
Go
17 lines
223 B
Go
package router
|
|
|
|
import (
|
|
"mayfly-go/internal/sys/api"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitSystemRouter(router *gin.RouterGroup) {
|
|
s := &api.System{}
|
|
sys := router.Group("sysmsg")
|
|
|
|
{
|
|
sys.GET("", s.ConnectWs)
|
|
}
|
|
}
|