1 2 3 4 5 6 7 8 9 10
use clap::Parser; use std::path::PathBuf; #[derive(Parser, Debug)] #[clap(about = "Advent of Code problem\n<https://github.com/nuxeh/aocf>")] pub struct AocOpts { /// File to read as input pub input: Option<PathBuf>, }