Current section
Files
Jump to
Current section
Files
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