From 8093904378c908726ae2076592c6345b1c8d7403 Mon Sep 17 00:00:00 2001 From: zhangxin Date: Thu, 24 Jun 2021 10:34:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0websocket=E7=9A=84=E5=B8=B8?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/base/ws.go | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/models/base/ws.go b/models/base/ws.go index 48259c4..edfca83 100644 --- a/models/base/ws.go +++ b/models/base/ws.go @@ -1,10 +1,7 @@ -/****************************************************************************** - * @Function Name : - *----------------------------------------------------------------------------- - * @Description : - * @Function Parameters: - * @Return Value : - * @Author : Zhang Xin - * @Date : 2021/3/3 11:02 - ******************************************************************************/ - package base \ No newline at end of file +package base + +const ( + // websocket 属性 + NAMESPACE_EODS = "EODS" + EVENT_STN_DATA = "STN_DATA" +)