Add configurable URL hooks

Signed-off-by: Sean Du <do4suki@gmail.com>
This commit is contained in:
2026-06-20 08:12:06 +08:00
parent 58aa9be073
commit baa0f6e7e7
11 changed files with 233 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
namespace config {
struct OverrideUrls {
std::string api_url;
std::string asset_url;
};
void load();
const OverrideUrls& get();
}