diff options
author | Florian Klink <flokli@flokli.de> | 2023-02-12T11·03+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-03-06T15·32+0000 |
commit | b74ffda583d40db8b94b58418f70430687b2eaf0 (patch) | |
tree | 767fdf6ec400b4b3650c892c7f3cd0646f760271 /tvix/store/src/lib.rs | |
parent | 119aa43171c2e2c654d513ea2f2ee740f962a398 (diff) |
feat(tvix/store): add blobservice r/5894
This adds a BlobService trait, and an implementation for it using sled, and one using a HashMap. Change-Id: Id6bc1b629195d0b26fc503bd7d2dc9e43c41c317 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8087 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/store/src/lib.rs')
-rw-r--r-- | tvix/store/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs index e4d770c312a9..aa0fcd0c9619 100644 --- a/tvix/store/src/lib.rs +++ b/tvix/store/src/lib.rs @@ -2,6 +2,7 @@ pub mod client; mod errors; +pub mod blobservice; pub mod chunkservice; pub mod proto; |