summaryrefslogtreecommitdiff
path: root/lib/chessh/ssh/client/board/server.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chessh/ssh/client/board/server.ex')
-rw-r--r--lib/chessh/ssh/client/board/server.ex19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/chessh/ssh/client/board/server.ex b/lib/chessh/ssh/client/board/server.ex
deleted file mode 100644
index 2e480e7..0000000
--- a/lib/chessh/ssh/client/board/server.ex
+++ /dev/null
@@ -1,19 +0,0 @@
-# defmodule Chessh.SSH.Client.Board.Server do
-# use GenServer
-#
-# defmodule State do
-# defstruct game_id: nil,
-# binbo_pid: nil
-# end
-#
-# def init([%State{game_id: game_id} = state]) do
-# {:ok, binbo_pid} = GenServer.start_link(:binbo, [])
-#
-# :syn.join(:games, {:game, game_id})
-# {:ok, state}
-# end
-#
-# def handle_cast({:new_move, attempted_move}, %State{game_id: game_id} = state) do
-# {:no_reply, state}
-# end
-# end