gazelle_api 0.9.0-alpha.1

Gazelle API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::Deserialize;

use crate::{Group, Torrent};

/// Response for the `torrent` action
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TorrentResponse {
    /// Release information
    pub group: Group,
    /// Edition information
    pub torrent: Torrent,
}