Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CallsignEmail ¶
type CallsignTime ¶
type EmailAddressStore ¶
type EntryStore ¶
type EntryStore interface { AddLive(callsign string) error CountLive() (int, error) GetLive(callsign string) (time.Time, bool, error) ListLive(ts time.Time) ([]CallsignTime, error) RemoveLive(callsign string, ts time.Time) error LastSeenLive() (time.Time, error) LastSeenDead() (time.Time, error) AddDead(callsign string, ts time.Time) error CountDead() (int, error) GetDead(callsign string) (time.Time, bool, error) ListDead() ([]CallsignTime, error) RemoveDead(callsign string) error }
type Store ¶
type Store interface { EmailAddressStore EntryStore }
Click to show internal directories.
Click to hide internal directories.