From d57a5bcc3151f91fd82aa6f333e99a60eca8ced3 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 11 May 2024 17:05:41 +0500 Subject: feat: help command + url configuration --- src/config.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/config.hpp') diff --git a/src/config.hpp b/src/config.hpp index 323e18f..5c437d6 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -37,11 +37,16 @@ namespace bot { std::optional id = std::nullopt; }; + struct UrlConfiguration { + std::optional help = std::nullopt; + }; + struct Configuration { TwitchCredentialsConfiguration twitch_credentials; DatabaseConfiguration database; CommandConfiguration commands; OwnerConfiguration owner; + UrlConfiguration url; }; std::optional parse_configuration_from_file( -- cgit v1.2.3