2023-05-24 16:10:00 +09:00
|
|
|
package core
|
|
|
|
|
|
|
|
|
|
import (
|
2023-07-25 18:11:02 +09:00
|
|
|
"repositories.action2quare.com/ayo/gocommon/wshandler"
|
2023-05-24 16:10:00 +09:00
|
|
|
)
|
|
|
|
|
|
2023-07-25 18:11:02 +09:00
|
|
|
type configDocument map[string]any
|
2023-05-24 16:10:00 +09:00
|
|
|
type group interface {
|
2023-08-31 21:02:19 +09:00
|
|
|
Initialize(*Tavern, configDocument) error
|
2023-07-27 17:45:51 +09:00
|
|
|
ClientMessageReceived(*wshandler.Sender, wshandler.WebSocketMessageType, any)
|
2023-05-24 16:10:00 +09:00
|
|
|
}
|