add use_https

close #70
This commit is contained in:
2024-02-07 12:05:57 +01:00
parent 32d1b129c8
commit fcdc875272
4 changed files with 56 additions and 19 deletions

View File

@@ -25,6 +25,8 @@ pub struct Config {
pub args: String,
#[serde(default)]
pub engine: String,
#[serde(default)]
pub use_https: bool,
}
impl Default for Config {
@@ -37,6 +39,7 @@ impl Default for Config {
force_update: false,
args: String::default(),
engine: String::default(),
use_https: false,
}
}
}