From ed0baec0a3f953c99445f6842dadc5566e89cb75 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 8 Jul 2021 17:11:46 -0400 Subject: Initial commit --- dotup_cli/src/config.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 dotup_cli/src/config.rs (limited to 'dotup_cli/src/config.rs') diff --git a/dotup_cli/src/config.rs b/dotup_cli/src/config.rs new file mode 100644 index 0000000..ac4fc66 --- /dev/null +++ b/dotup_cli/src/config.rs @@ -0,0 +1,6 @@ +use std::path::PathBuf; + +#[derive(Debug)] +pub struct Config { + pub archive_path: PathBuf, +} -- cgit