Echo Writes Code

read.hpp

1
2
3
4
5
6
7
8
9
10
11
#ifndef CRUCIBLE_BOBA_READ_HPP
#define CRUCIBLE_BOBA_READ_HPP

#include "crucible/boba/container.hpp"
#include "crucible/boba/errors.hpp"

namespace crucible::boba::read {
  auto from_bytes(std::vector<std::byte> const &bytes) -> errors::BobaResult<container::Container>;
}

#endif // CRUCIBLE_BOBA_READ_HPP