#include #include namespace store::api { std::optional fetch_store_config() noexcept { try { const String url = "https://raw.githubusercontent.com/acidicoala/public-entitlements/main/steam/v2/store_config.json"; const auto kg_config_json = koalabox::http_client::fetch_json(url); return kg_config_json.get(); } catch (const Exception& e) { LOG_ERROR("Failed to fetch Store config from GitHub: {}", e.what()) return std::nullopt; } } }