1 2 3 4 5 6 7 8 9
//! API is organized in resource groups called contexts. //! //! Each context is a module that contains the API endpoints related to a //! specific resource group. pub mod auth_key; pub mod health_check; pub mod stats; pub mod torrent; pub mod whitelist;