12 lines
193 B
Go
12 lines
193 B
Go
package bot
|
|
|
|
import (
|
|
"github.com/Tnze/go-mc/chat"
|
|
)
|
|
|
|
type eventBroker struct {
|
|
GameStart func() error
|
|
ChatMsg func(msg chat.Message) error
|
|
Disconnect func(reason chat.Message) error
|
|
}
|