Add 'offline' config option to turn off autojoin

This commit is contained in:
Joscha 2022-08-27 17:01:39 +02:00
parent 04581f9158
commit 73a0971c34
3 changed files with 9 additions and 4 deletions

View file

@ -26,6 +26,8 @@ pub struct Config {
pub data_dir: Option<PathBuf>,
#[serde(default)]
pub ephemeral: bool,
#[serde(default)]
pub offline: bool,
pub euph: Euph,
}