diff --git a/src/clap.rs b/src/clap.rs index dc3655a8..446398c7 100644 --- a/src/clap.rs +++ b/src/clap.rs @@ -1,5 +1,7 @@ //! Integration with `clap` +use std::path::PathBuf; + use clap::Parser; /// Commandline arguments @@ -8,7 +10,7 @@ use clap::Parser; pub struct Args { #[arg(short, long)] /// Optional argument to the path of a conduwuit config TOML file - pub config: Option, + pub config: Option, } /// Parse commandline arguments into structured data