torrust_tracker/bootstrap/mod.rs
1//! Tracker application bootstrapping.
2//!
3//! This module includes all the functions to build the application, its dependencies, and run the jobs.
4//!
5//! Jobs are tasks executed concurrently. Some of them are concurrent because of the asynchronous nature of the task,
6//! like cleaning torrents, and other jobs because they can be enabled/disabled depending on the configuration.
7//! For example, you can have more than one UDP and HTTP tracker, each server is executed like a independent job.
8pub mod app;
9pub mod config;
10pub mod jobs;
11pub mod logging;