aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/config.rs
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2022-02-08 09:21:12 +0000
committerdiogo464 <[email protected]>2022-02-08 09:21:12 +0000
commit92b05a877eb772985d2f4fc9cd198ca642b69b6a (patch)
tree4a2edc173b8809e929e4abc47899ae9c6d956684 /dotup_cli/src/config.rs
parent0992c36733f58750da93921041424fd09f0158ed (diff)
removed old code
Diffstat (limited to 'dotup_cli/src/config.rs')
-rw-r--r--dotup_cli/src/config.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/dotup_cli/src/config.rs b/dotup_cli/src/config.rs
deleted file mode 100644
index dabaf74..0000000
--- a/dotup_cli/src/config.rs
+++ /dev/null
@@ -1,10 +0,0 @@
1use std::path::PathBuf;
2
3#[derive(Debug)]
4pub struct Config {
5 pub archive_path: PathBuf,
6 pub install_path: PathBuf,
7 pub working_path: PathBuf,
8}
9
10impl Config {}