// // FileBundle.cpp // Clock Signal // // Created by Thomas Harte on 19/11/2025. // Copyright © 2025 Thomas Harte. All rights reserved. // #include "FileBundle.hpp" using namespace Storage::FileBundle; std::optional LocalFSFileBundle::key_file() { return {to_contain_}; } Storage::FileHolder LocalFSFileBundle::open(const std::string &name, Storage::FileMode mode) { // TODO: append path. Just cheat for now. (void)name; return {/* name */ to_contain_, mode}; }