feat(tvix/store): add GRPCBlobService
This connects to a (remote) tvix-store BlobService over gRPC. Change-Id: If31f706738a5c3445886c117feca8b61f3203e9e Reviewed-on: https://cl.tvl.fyi/c/depot/+/8552 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
c1484c9f85
commit
a9a2fce27e
2 changed files with 198 additions and 0 deletions
|
|
@ -2,9 +2,11 @@ use std::io;
|
|||
|
||||
use crate::Error;
|
||||
|
||||
mod grpc;
|
||||
mod memory;
|
||||
mod sled;
|
||||
|
||||
pub use self::grpc::GRPCBlobService;
|
||||
pub use self::memory::MemoryBlobService;
|
||||
pub use self::sled::SledBlobService;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue