feat: ws模块添加UE事件查询类型
This commit is contained in:
@@ -37,6 +37,12 @@ func (s *WSReceiveImpl) Receive(client *model.WSClient, reqMsg model.WSRequest)
|
||||
return err
|
||||
}
|
||||
client.MsgChan <- res
|
||||
case "ue":
|
||||
res, err := processor.GetUEConnect(reqMsg.RequestID, reqMsg.Data)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
client.MsgChan <- res
|
||||
default:
|
||||
return fmt.Errorf("message type not supported")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user