torrust-tracker 3.0.0

A feature rich BitTorrent tracker.
Documentation
1
2
3
4
5
6
7
//! Program to check running trackers.
use torrust_tracker::console::clients::checker::app;

#[tokio::main]
async fn main() {
    app::run().await.expect("Some checks fail");
}