13 lines
No EOL
183 B
Rust
13 lines
No EOL
183 B
Rust
use std::path::PathBuf;
|
|
use clap::Parser;
|
|
|
|
#[derive(Debug, Parser)]
|
|
pub struct Args {
|
|
path: PathBuf,
|
|
}
|
|
|
|
impl Args {
|
|
pub fn path(&self) -> &PathBuf {
|
|
&self.path
|
|
}
|
|
} |