party로 그룹 변경
This commit is contained in:
22
core/group_chat.go
Normal file
22
core/group_chat.go
Normal 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) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user