torrust-tracker 3.0.0

A feature rich BitTorrent tracker.
Documentation
//! Integration tests.
//!
//! ```text
//! cargo test --test integration
//! ```

use torrust_tracker_clock::clock;
mod common;
mod servers;

/// This code needs to be copied into each crate.
/// Working version, for production.
#[cfg(not(test))]
#[allow(dead_code)]
pub(crate) type CurrentClock = clock::Working;

/// Stopped version, for testing.
#[cfg(test)]
#[allow(dead_code)]
pub(crate) type CurrentClock = clock::Stopped;