aprs.me/lib/aprs/packets_behaviour.ex
2025-06-23 14:16:32 +00:00

8 lines
251 B
Elixir

defmodule Aprs.PacketsBehaviour do
@moduledoc """
Behaviour for Packets module to allow mocking in tests
"""
@callback get_historical_packet_count(map()) :: non_neg_integer()
@callback stream_packets_for_replay(map()) :: Enumerable.t()
end