From 7f9002377d207d7a175d595faf9f756629a8557c Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Wed, 1 May 2024 23:53:13 +0500 Subject: feat: added bot_client_id field to Configuration --- src/config.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/config.cpp') diff --git a/src/config.cpp b/src/config.cpp index 1a11f0b..45209e4 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -38,6 +38,8 @@ namespace bot { cfg.bot_username = value; } else if (key == "bot_password") { cfg.bot_password = value; + } else if (key == "bot_client_id") { + cfg.bot_client_id = value; } else if (key == "db_name") { db_cfg.name = value; } else if (key == "db_user") { -- cgit v1.2.3