refactor: Change FindScriptPath method from static to instance method in JsonConfigService

This commit is contained in:
2026-01-05 02:55:36 +00:00
parent dc81e03221
commit efc19b6d98

View File

@@ -94,7 +94,7 @@ private:
RuntimeConfig config_;
// Helper methods moved from main.cpp
static std::filesystem::path FindScriptPath(const char* argv0);
std::filesystem::path FindScriptPath(const char* argv0);
static RuntimeConfig LoadFromJson(std::shared_ptr<ILogger> logger, const std::filesystem::path& configPath, bool dumpConfig);
};