This commit is contained in:
laodaming 2023-10-11 19:12:45 +08:00
parent 9dad383b03
commit f65ff33e19
2 changed files with 2 additions and 2 deletions
server/websocket/internal/types
server_api

View File

@ -6,7 +6,7 @@ import (
) )
type DataTransferReq struct { type DataTransferReq struct {
Wid string `form:"wid"` Wid string `form:"wid,optional"`
} }
type RenderNotifyReq struct { type RenderNotifyReq struct {

View File

@ -22,7 +22,7 @@ service websocket {
//websocket数据交互[ //websocket数据交互[
type DataTransferReq { type DataTransferReq {
Wid string `form:"wid"` Wid string `form:"wid,optional"`
} }
//渲染完了通知接口 //渲染完了通知接口
type RenderNotifyReq { type RenderNotifyReq {