#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); }