aboutsummaryrefslogtreecommitdiff
path: root/uis/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'uis/client.go')
-rw-r--r--uis/client.go12
1 files changed, 3 insertions, 9 deletions
diff --git a/uis/client.go b/uis/client.go
index 6b1d1d9..beca3a6 100644
--- a/uis/client.go
+++ b/uis/client.go
@@ -4,15 +4,9 @@
package uis
type Client struct {
- Port int
+ Port string
}
-func (ui *Client) Init() error {
- return nil
+func (ui *Client) Run() {
+ println("Not Implemented")
}
-
-func (ui *Client) Round(r int) error {
- return nil
-}
-
-func (ui *Client) BroadcastWinner() {}