disconnect 시그니쳐 수정

This commit is contained in:
2023-11-11 21:43:17 +09:00
parent e10ecb6744
commit eda313d29e
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ func (cs *connections) ClientConnected(conn *websocket.Conn, callby *wshandler.S
cs.new(callby.Accid, conn)
}
func (cs *connections) ClientDisconnected(conn *websocket.Conn, callby *wshandler.Sender) {
func (cs *connections) ClientDisconnected(msg string, callby *wshandler.Sender) {
cs.delete(callby.Accid)
}