party로 그룹 변경

This commit is contained in:
2023-07-25 18:11:02 +09:00
parent bb6a741d63
commit 310397dd2b
7 changed files with 881 additions and 1262 deletions

22
core/group_chat.go Normal file
View File

@ -0,0 +1,22 @@
package core
import (
"reflect"
"repositories.action2quare.com/ayo/gocommon/wshandler"
)
func init() {
groupTypeContainer()["chat"] = reflect.TypeOf(&groupChat{})
}
type groupChat struct {
}
func (gc *groupChat) Initialize(*subTavern, configDocument) error {
return nil
}
func (gc *groupChat) ClientMessageReceved(*wshandler.Sender, wshandler.WebSocketMessageType, any) {
}