#pragma once #include #include namespace bot { struct Configuration { std::string bot_username; std::string bot_password; }; std::optional parse_configuration_from_file( const std::string &file_path); }