diff --git a/data_struct.py b/data_struct.py index 104a4f9..56d74d0 100644 --- a/data_struct.py +++ b/data_struct.py @@ -77,11 +77,13 @@ class NewMessage(Options): class BotConfig(Options): name = 'icalingua bot config' # _check_filled = True - host: str private_key: str + host: str self_id: int notice_room: List[int] notice_start: bool = False + admin_list: List[int] + py_plugin_path: str def init(self, **kwargs) -> None: if self.notice_room is None: diff --git a/main.py b/main.py index 88d0ecc..2cdc36f 100644 --- a/main.py +++ b/main.py @@ -6,7 +6,7 @@ from lib_not_dr.loggers import config from data_struct import get_config, BotConfig, BotStatus -_version_ = "0.3.2" +_version_ = "0.3.3" logger = config.get_logger("bot")