Current section

Files

Jump to
islands_client_rpc lib islands client rpc engine_not_started.ex
Raw

lib/islands/client/rpc/engine_not_started.ex

defmodule Islands.Client.RPC.EngineNotStarted do
alias IO.ANSI.Plus, as: ANSI
@spec message(node) :: ANSI.ansilist()
def message(engine_node) do
[
:fuchsia_background,
:light_white,
"Islands Engine not started on node ",
:italic,
"#{inspect(engine_node)}."
]
end
end