| 158 | return static_cast<double>(_get_config()->get_item(key)); |
| 159 | } |
| 160 | std::string get_config_string(configuration_keys key) { |
| 161 | return static_cast<std::string>(_get_config()->get_item(key)); |
| 162 | } |
| 163 | std::string get_config_as_json_string() { |
| 164 | nlohmann::json doc = nlohmann::json::object(); |
| 165 | for (auto& kv : _get_config()->get_items()) { |
no test coverage detected