Packages

Elixir-native host management with inspectable plans, package locks, systemd isolation, and remote bootstrap.

Current section

Files

Jump to
host_kit lib host_kit application.ex
Raw

lib/host_kit/application.ex

defmodule HostKit.Application do
@moduledoc "HostKit OTP application entry point."
use Application
@impl true
def start(_type, _args) do
HostKit.Supervisor.start_link([])
end
end