qbt-clean 0.120.0

Automated rules-based cleaning of qBittorrent torrents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug,clap::Subcommand)]
pub enum Command {
	Clean,
	Group(crate::ArgsGroup),
	Simulate,
}

/// Clean qBittorrent torrents.
#[derive(Debug,clap::Parser)]
#[clap(version)]
pub struct Args {
	#[clap(subcommand)]
	pub command: Command,

	#[clap(flatten)]
	pub config: crate::ArgsConfig,
}