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:
Florian Klink 2023-05-11 15:45:57 +03:00 committed by flokli
parent c1484c9f85
commit a9a2fce27e
2 changed files with 198 additions and 0 deletions

View file

@ -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;