defmodule Parser.Message do @moduledoc """ APRS message parsing. """ @doc """ Parse an APRS message string. Returns a struct or error. """ @spec parse(String.t()) :: map() | nil def parse(_message_str) do # Stub: actual logic to be implemented nil end end