Packages

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

Current section

Files

Jump to
systemdkit lib systemd unit_file span.ex
Raw

lib/systemd/unit_file/span.ex

defmodule Systemd.UnitFile.Span do
@moduledoc """
Source location for a parsed unit file entry.
"""
@type t :: %__MODULE__{
line: pos_integer() | nil,
column: pos_integer() | nil
}
defstruct [:line, :column]
end