blob: ce9208b04b6da25f02df8ca4c57d0cdf7df10ff0 [file] [log] [blame]
#include "hash_handler.hpp"
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
namespace blobs
{
bool HashFileHandler::open(const std::string& path)
{
this->path = path;
return false;
}
bool HashFileHandler::write(std::uint32_t offset,
const std::vector<std::uint8_t>& data)
{
return false;
}
} // namespace blobs