From ef028f6535c8aac9367d2375cdd9556a1dcfe4f7 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Wed, 8 May 2024 22:07:24 +0500 Subject: feat: owner configuration --- src/config.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/config.cpp') diff --git a/src/config.cpp b/src/config.cpp index d5a3f1d..977b92c 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -22,6 +22,7 @@ namespace bot { TwitchCredentialsConfiguration ttv_crd_cfg; DatabaseConfiguration db_cfg; CommandConfiguration cmd_cfg; + OwnerConfiguration owner_cfg; std::string line; while (std::getline(ifs, line, '\n')) { @@ -57,8 +58,15 @@ namespace bot { } else if (key == "commands.join_allow_from_other_chats") { cmd_cfg.join_allow_from_other_chats = std::stoi(value); } + + else if (key == "owner.name") { + owner_cfg.name = value; + } else if (key == "owner.id") { + owner_cfg.id = std::stoi(value); + } } + cfg.owner = owner_cfg; cfg.commands = cmd_cfg; cfg.twitch_credentials = ttv_crd_cfg; cfg.database = db_cfg; -- cgit v1.2.3