diff options
Diffstat (limited to 'tvix/castore/src/blobservice/mod.rs')
-rw-r--r-- | tvix/castore/src/blobservice/mod.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tvix/castore/src/blobservice/mod.rs b/tvix/castore/src/blobservice/mod.rs index 5ecf25ac1337..3267116e404e 100644 --- a/tvix/castore/src/blobservice/mod.rs +++ b/tvix/castore/src/blobservice/mod.rs @@ -24,12 +24,6 @@ pub use self::sled::SledBlobService; /// close funtion, to finalize a blob and get its digest. #[async_trait] pub trait BlobService: Send + Sync { - /// Create a new instance by passing in a connection URL. - /// TODO: check if we want to make this async, instead of lazily connecting - fn from_url(url: &url::Url) -> Result<Self, Error> - where - Self: Sized; - /// Check if the service has the blob, by its content hash. async fn has(&self, digest: &B3Digest) -> Result<bool, Error>; |