torrust-tracker 3.0.0

A feature rich BitTorrent tracker.
Documentation
1
2
3
4
5
6
7
//! Program to make request to UDP trackers.
use torrust_tracker::console::clients::udp::app;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    app::run().await
}