diff options
Diffstat (limited to 'src/config.hpp')
| -rw-r--r-- | src/config.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config.hpp b/src/config.hpp new file mode 100644 index 0000000..3c10d86 --- /dev/null +++ b/src/config.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include <optional> +#include <string> + +namespace bot { + struct Configuration { + std::string bot_username; + std::string bot_password; + }; + + std::optional<Configuration> parse_configuration_from_file( + const std::string &file_path); +} |
