10 lines
116 B
Go
10 lines
116 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"git.fromouter.space/mcg/draft"
|
||
|
)
|
||
|
|
||
|
type session struct {
|
||
|
Players map[string]draft.Player
|
||
|
}
|