aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/config.rs
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-12-24 21:09:44 +0000
committerdiogo464 <[email protected]>2021-12-24 21:09:44 +0000
commit6817631ddee3795af3a558bf38e477da4ae5b1cb (patch)
tree96b54bc5fcef87046e065726574a473e10989124 /dotup_cli/src/config.rs
parentffcb43df8f39a55be468cf4bdfecd72dd026d940 (diff)
made install-path a global option
Diffstat (limited to 'dotup_cli/src/config.rs')
-rw-r--r--dotup_cli/src/config.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/dotup_cli/src/config.rs b/dotup_cli/src/config.rs
index ac4fc66..2046ad5 100644
--- a/dotup_cli/src/config.rs
+++ b/dotup_cli/src/config.rs
@@ -3,4 +3,5 @@ use std::path::PathBuf;
3#[derive(Debug)] 3#[derive(Debug)]
4pub struct Config { 4pub struct Config {
5 pub archive_path: PathBuf, 5 pub archive_path: PathBuf,
6 pub install_path: PathBuf,
6} 7}