Remove unnecessary server in board

This commit is contained in:
Simponic 2023-01-13 23:58:37 -07:00
parent 53be77e2c5
commit a1d244fe72
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 52B3774857EB24B1

View File

@ -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