aboutsummaryrefslogtreecommitdiff
path: root/uis/client.go
blob: 6f7886a46d45670127e9e9b50e8d0d2dd4bb5169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package uis

type Client struct {
	Port int
}

func (ui *Client) Init() error {
	return nil
}

func (ui *Client) Round(r int) error {
	return nil
}

func (ui *Client) BroadcastWinner() {}