Files
cgss-http-hook/src/config.hpp
T
2026-06-20 08:12:46 +08:00

13 lines
209 B
C++

#pragma once
namespace config {
struct OverrideUrls {
bool force_http = true;
std::string api_url;
std::string asset_url;
};
void load();
const OverrideUrls& get();
}