Add 'euph.rooms.<name>.username' config option

This commit is contained in:
Joscha 2022-08-25 23:03:33 +02:00
parent 6e6fddc0b1
commit d0ba210855
4 changed files with 21 additions and 1 deletions

View file

@ -8,6 +8,7 @@ use crate::macros::ok_or_return;
#[derive(Debug, Clone, Default, Deserialize)]
pub struct EuphRoom {
pub username: Option<String>,
pub password: Option<String>,
}