aboutsummaryrefslogtreecommitdiff
path: root/uis/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'uis/server.go')
-rw-r--r--uis/server.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/uis/server.go b/uis/server.go
new file mode 100644
index 0000000..e83e6a9
--- /dev/null
+++ b/uis/server.go
@@ -0,0 +1,16 @@
+package uis
+
+type Server struct {
+ Port int
+}
+
+func (s *Server) Init() error {
+ return nil
+}
+
+func (s *Server) Round(r int) error {
+ return nil
+}
+
+func (s *Server) BroadcastWinner() {
+}