all kinds of different language scripts

This commit is contained in:
Chris Cochrun 2024-07-18 17:20:07 -05:00
parent 5400f80b55
commit 2a76649221
8 changed files with 143 additions and 1 deletions

13
scripts/video-archive.rs Normal file
View file

@ -0,0 +1,13 @@
use clap::Parser;
#[derive(Parser, Debug)]
#[clap(version)]
struct Args {
#[clap(short, long, help = "Video to convert")]
video: Option<PathBuf>,
}
fn main() {
let args = Args::parse();
println!("{:?}", args);
}