caesura 0.19.0

An all-in-one command line tool to **transcode FLAC** audio files and **upload to gazelle** based indexers/trackers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Deserialize, Serialize)]
pub struct QueueStatus {
    /// Did the queue command succeed?
    pub success: bool,
    /// Number of items added to the queue
    pub added: usize,
    /// Total number of items not added to the queue
    pub excluded: usize,
}