Persistent game #5

Merged
Simponic merged 6 commits from persistent-game into main 2023-01-17 16:00:18 -05:00
Showing only changes of commit a1d244fe72 - Show all commits

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