12 lines
264 B
Go
12 lines
264 B
Go
package core
|
|
|
|
import (
|
|
"repositories.action2quare.com/ayo/gocommon/wshandler"
|
|
)
|
|
|
|
type configDocument map[string]any
|
|
type group interface {
|
|
Initialize(*Tavern, configDocument) error
|
|
ClientMessageReceived(*wshandler.Sender, wshandler.WebSocketMessageType, any)
|
|
}
|