summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index ba1b46a..58d399a 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,9 +1,10 @@
1use config::{Config, File, FileFormat}; 1use config::{Config, File, FileFormat};
2use serde::Deserialize; 2use serde::Deserialize;
3 3
4#[derive(Debug, Clone,Deserialize)] 4#[derive(Debug, Clone, Deserialize)]
5pub struct Cfg { 5pub struct Cfg {
6 pub data: String, 6 pub data: String,
7 pub clean_remove: bool,
7 pub apis: Apis, 8 pub apis: Apis,
8} 9}
9 10