spectator/config.h (10 lines of code) (raw):

#pragma once #include <string> #include <unordered_map> namespace spectator { struct Config { std::string endpoint; std::unordered_map<std::string, std::string> common_tags; uint32_t bytes_to_buffer; }; } // namespace spectator