Add metadata!

This commit is contained in:
Your Name
2025-05-03 10:14:16 +12:00
parent 16754a48d4
commit 24a4c66c13
8 changed files with 283 additions and 149 deletions

11
src/compress.hpp Normal file
View File

@@ -0,0 +1,11 @@
#include <zlib.h>
#include <string>
#include <cstdint>
namespace simple_object_storage {
std::string decompress_gzip(const std::string& file_path);
uint64_t get_hash_from_tgz(const std::string& file_path);
} // namespace simple_object_storage