feat: 新增linux文件上传成功后websocket通知

This commit is contained in:
meilin.huang
2021-11-11 15:56:02 +08:00
parent f6fb732911
commit 78d6c3d1a4
26 changed files with 379 additions and 150 deletions

View File

@@ -0,0 +1,16 @@
package router
import (
"mayfly-go/server/sys/api"
"github.com/gin-gonic/gin"
)
func InitSystemRouter(router *gin.RouterGroup) {
s := &api.System{}
sys := router.Group("sysmsg")
{
sys.GET("", s.ConnectWs)
}
}