diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 14:19:42 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 14:19:42 +0200 |
commit | 72acfb93627918f6fc9c68a5bf5b4ecf34d07a23 (patch) | |
tree | e59a493e573b05a4fc5a09f3c6d2702635410bec /src/cli.rs | |
parent | perf(raw_update.py)!: Don't fetch entries that are already in the database (diff) | |
download | yt-72acfb93627918f6fc9c68a5bf5b4ecf34d07a23.tar.gz yt-72acfb93627918f6fc9c68a5bf5b4ecf34d07a23.zip |
test(benches/update): Init
Diffstat (limited to 'src/cli.rs')
-rw-r--r-- | src/cli.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cli.rs b/src/cli.rs index 8f9d605..f3f4b7e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -31,6 +31,10 @@ pub struct CliArgs { #[arg(long="verbose", short = 'v', action = ArgAction::Count)] pub verbosity: u8, + /// Set the path to the videos.db. Otherwise use the default location + #[arg(long, short)] + pub db_path: Option<PathBuf>, + /// Silence all output #[arg(long, short = 'q')] pub quiet: bool, |