1package model 2 3type WsBaseReq struct { 4 Op string `json:"op"` 5 Args []interface{} `json:"args"` 6} 7 8