docs(config): rebuild docs and removed redundant documentation

This commit is contained in:
2025-02-20 09:45:47 -05:00
parent 796d8a9021
commit e54a5be967
38 changed files with 291 additions and 245 deletions

View File

@@ -29,14 +29,4 @@ bool Config::loadConfig(const std::string& configFile) {
return true;
}
bool Config::isKeyInCache(const std::string &key) {
return configMap.find(key) != configMap.end();
}
void Config::addToCache(const std::string &key, const YAML::Node &node) {
configMap[key] = node;
}
void Config::registerUnknownKey(const std::string &key) {
unknownKeys.push_back(key);
}