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:
parent
365937cd08
commit
b3ca1a78eb
3 changed files with 55 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue