synchronizator/src/config.rs
2025-05-06 20:24:41 -04:00

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
}
}