refactor(tvix/store): impl Default for MemoryChunkService

Change-Id: If1ceb870e9e5d03b651923a3a786350a8663e990
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8236
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Florian Klink 2023-03-10 12:21:12 +01:00 committed by clbot
parent e716bd0957
commit b3d6e70909
2 changed files with 2 additions and 10 deletions

View file

@ -10,7 +10,7 @@ pub fn gen_blob_service() -> impl BlobService + Send + Sync + Clone + 'static {
}
pub fn gen_chunk_service() -> impl ChunkService + Clone {
MemoryChunkService::new()
MemoryChunkService::default()
}
pub fn gen_directory_service() -> impl DirectoryService + Send + Sync + Clone + 'static {