From feede6c8024147d0b2f12c18d7dca622a797645b Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 19 May 2024 00:58:08 +0500 Subject: feat: config --- web/src/config.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 web/src/config.hpp (limited to 'web/src/config.hpp') diff --git a/web/src/config.hpp b/web/src/config.hpp new file mode 100644 index 0000000..11f8b04 --- /dev/null +++ b/web/src/config.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include +#include +namespace botweb { + struct Configuration { + std::string contact_name = "some guy", contact_url = "#"; + }; + + std::optional parse_configuration_from_file( + const std::string &file_path); +} -- cgit v1.2.3