| 93 | |
| 94 | |
| 95 | void JsonStoreSync::insert( |
| 96 | const std::string &key, const nlohmann::json &data, const std::string &parent) { |
| 97 | insert_base(key, data, parent, true, id_, false); |
| 98 | } |
| 99 | |
| 100 | void JsonStoreSync::remove(const std::string &key, const std::string &parent) { |
| 101 | remove_base(key, parent, true, id_, false); |
no outgoing calls
no test coverage detected