diff options
author | Simponic <loganhunt@simponic.xyz> | 2023-01-11 19:14:47 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2023-01-11 19:14:47 -0700 |
commit | aa2ff6e1374e8a6a546aa04ee3430d1152c58553 (patch) | |
tree | c4e340f072a1da4c9a64c23bb7b1b474fdc0f058 /lib/chessh/ssh/client/client.ex | |
parent | 628c6d95a32ba0dea67ab046a480ddfca7432c9b (diff) | |
download | chessh-aa2ff6e1374e8a6a546aa04ee3430d1152c58553.tar.gz chessh-aa2ff6e1374e8a6a546aa04ee3430d1152c58553.zip |
Checkpoint
Diffstat (limited to 'lib/chessh/ssh/client/client.ex')
-rw-r--r-- | lib/chessh/ssh/client/client.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chessh/ssh/client/client.ex b/lib/chessh/ssh/client/client.ex index 216af71..eff22b8 100644 --- a/lib/chessh/ssh/client/client.ex +++ b/lib/chessh/ssh/client/client.ex @@ -25,8 +25,8 @@ defmodule Chessh.SSH.Client do @impl true def init([%State{} = state]) do {:ok, screen_pid} = - GenServer.start_link(Chessh.SSH.Client.Menu, [ - %Chessh.SSH.Client.Menu.State{client_pid: self()} + GenServer.start_link(Chessh.SSH.Client.Board, [ + %Chessh.SSH.Client.Board.State{client_pid: self()} ]) {:ok, %{state | screen_processes: [screen_pid]}} |