torrust_tracker/servers/http/v1/mod.rs
1//! HTTP server implementation for the `v1` API.
2//!
3//! Refer to the generic [HTTP server documentation](crate::servers::http) for
4//! more information about the endpoints and their usage.
5pub mod extractors;
6pub mod handlers;
7pub mod query;
8pub mod requests;
9pub mod responses;
10pub mod routes;
11pub mod services;