23 lines
385 B
Go
23 lines
385 B
Go
|
|
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) {
|
||
|
|
|
||
|
|
}
|