| 104 | } |
| 105 | |
| 106 | nlohmann::json BaseDevice::sendPutRequest(const std::string& subPath, const nlohmann::json& request, FileInfo fileInfo) |
| 107 | { |
| 108 | return state.getCommandAPI().PUTRequest(state.getRequestPath() + subPath, request, std::move(fileInfo)); |
| 109 | } |
| 110 | |
| 111 | void BaseDevice::refresh(bool force) |
| 112 | { |
nothing calls this directly
no test coverage detected