aboutsummaryrefslogtreecommitdiffstats
path: root/src/bot/master.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot/master.rs')
-rw-r--r--src/bot/master.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bot/master.rs b/src/bot/master.rs
index 94332ac..2885dfe 100644
--- a/src/bot/master.rs
+++ b/src/bot/master.rs
@@ -36,6 +36,7 @@ pub struct MasterArgs {
pub verbose: u8,
pub domain: String,
pub bind_address: String,
+ pub webserver_enable: bool,
pub names: Vec<String>,
pub id: Option<Identity>,
pub ids: Option<Vec<Identity>>,
@@ -345,6 +346,7 @@ impl MasterArgs {
address,
domain: self.domain,
bind_address: self.bind_address,
+ webserver_enable: self.webserver_enable,
id: self.id,
channel,
verbose,