20 lines
283 B
Go
20 lines
283 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
room "git.fromouter.space/mcg/cardgage/room/api"
|
||
|
)
|
||
|
|
||
|
type draftBot struct {
|
||
|
Sessions map[string]session
|
||
|
}
|
||
|
|
||
|
func newDraftBot() *draftBot {
|
||
|
return &draftBot{
|
||
|
Sessions: make(map[string]session),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (d *draftBot) onMessage(msg room.ServerMessage) {
|
||
|
|
||
|
}
|