//! Primitive types for [Torrust Tracker](https://docs.rs/torrust-tracker).
//!
//! This module contains the basic data structures for the [Torrust Tracker](https://docs.rs/torrust-tracker),
//! which is a `BitTorrent` tracker server. These structures are used not only
//! by the tracker server crate, but also by other crates in the Torrust
//! ecosystem.
use BTreeMap;
use Duration;
use InfoHash;
/// Duration since the Unix Epoch.
pub type DurationSinceUnixEpoch = Duration;
pub type PersistentTorrents = ;