feat(tvix/store): add mount command to entrypoint and fuse mod

`tvix-store mount PATH` will mount the tvix-store to the given path.

Change-Id: Icb82a6b3cb8a22eec856c375a28ae5580403833f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8665
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2023-05-28 09:32:21 +02:00 committed by flokli
parent 365937cd08
commit b3ca1a78eb
3 changed files with 55 additions and 0 deletions

View file

@ -1,5 +1,7 @@
mod digests;
mod errors;
#[cfg(feature = "fuse")]
mod fuse;
mod store_io;
pub mod blobservice;
@ -13,5 +15,8 @@ pub use digests::B3Digest;
pub use errors::Error;
pub use store_io::TvixStoreIO;
#[cfg(feature = "fuse")]
pub use fuse::FUSE;
#[cfg(test)]
mod tests;