From e7e6cae88cf3853343146c306b5260f94b80797e Mon Sep 17 00:00:00 2001 From: mountain Date: Fri, 22 Dec 2023 11:37:33 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=BC=80?= =?UTF-8?q?=EC=9D=B4=EC=8A=A4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wshandler/api_handler_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wshandler/api_handler_test.go b/wshandler/api_handler_test.go index 9d06319..72ad7ad 100644 --- a/wshandler/api_handler_test.go +++ b/wshandler/api_handler_test.go @@ -9,6 +9,7 @@ import ( "reflect" "testing" + "github.com/gorilla/websocket" "repositories.action2quare.com/ayo/gocommon/session" ) @@ -81,6 +82,9 @@ func (ph *testpeer) ApiFunc3(arg1 float64, arg2 []int) { func (ph *testpeer) ClientDisconnected(reason string) { } +func (ph *testpeer) ClientConnected(*websocket.Conn) { +} + type dummySessionConsumer struct { }