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 caddy json route.ex
Raw

lib/host_kit/caddy/json/route.ex

defmodule HostKit.Caddy.JSON.Route do
@moduledoc "Caddy HTTP route."
use JSONCodec
defstruct match: [], handle: [], terminal: true
@type t :: %__MODULE__{match: [struct()], handle: [struct()], terminal: boolean()}
end