| 6438 | } |
| 6439 | |
| 6440 | static void ASSaveConfig() { |
| 6441 | std::string config_path = GetConfigPath(); |
| 6442 | if (config.HasChangedSinceLastSave()) { |
| 6443 | LOGI << "Saving config at request from angel script" << std::endl; |
| 6444 | config.Save(config_path); |
| 6445 | } |
| 6446 | } |
| 6447 | |
| 6448 | static bool ASConfigHasKey(std::string key) { |
| 6449 | return config.HasKey(key); |
nothing calls this directly
no test coverage detected