MCPcopy Create free account
hub / github.com/FedeCarollo/jukebox-cli / Args

Class Args

src/main.rs:15–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13#[command(name = "jukebox-cli")]
14#[command(about = "A terminal-based music jukebox application")]
15struct Args {
16 /// Path to the music directory
17 #[arg(help = "Directory containing MP3 files. If not provided, defaults to a sample directory.")]
18 path: Option<PathBuf>,
19}
20
21fn main() -> Result<(), Box<dyn Error>> {
22 let args = Args::parse();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected