torrust_index_backend/web/api/v1/contexts/
mod.rs

1//! The API is organized in the following contexts:
2//!
3//! Context | Description | Version
4//! ---|---|---
5//! `About` | Metadata about the API | [`v1`](crate::web::api::v1::contexts::about)
6//! `Category` | Torrent categories | [`v1`](crate::web::api::v1::contexts::category)
7//! `Proxy` | Image proxy cache | [`v1`](crate::web::api::v1::contexts::proxy)
8//! `Settings` | Index settings | [`v1`](crate::web::api::v1::contexts::settings)
9//! `Tag` | Torrent tags | [`v1`](crate::web::api::v1::contexts::tag)
10//! `Torrent` | Indexed torrents | [`v1`](crate::web::api::v1::contexts::torrent)
11//! `User` | Users | [`v1`](crate::web::api::v1::contexts::user)
12//!
13pub mod about;
14pub mod category;
15pub mod proxy;
16pub mod settings;
17pub mod tag;
18pub mod torrent;
19pub mod user;