Packages

Pure Elixir tools for systemd unit files and D-Bus manager control

Current section

Files

Jump to
systemdkit lib systemd unit_file blank.ex
Raw

lib/systemd/unit_file/blank.ex

defmodule Systemd.UnitFile.Blank do
@moduledoc """
Blank line in a systemd unit file.
"""
alias Systemd.UnitFile.Span
@type t :: %__MODULE__{span: Span.t() | nil}
defstruct [:span]
end