Current section
Files
Jump to
Current section
Files
lib/ex_balena.ex
defmodule ExBalena do
@moduledoc """
The packages principal context.
"""
@spec start() :: :ok | no_return()
def start() do
with {:ok, _supervisor} <- ExBalena.Supervisor.start_link() do
:ok
end
end
# def healthy, ExBalena.API.V1.get("/healthy")
defmodule Fleet do
alias ExBalena.API.V2
end
end