refactor(tvix/store): move Cache to cache mod

This being in combinators makes it harder to find.

Change-Id: If7984bdbd43f164c670548639bb4846d859f6695
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12750
Reviewed-by: yuka <yuka@yuka.dev>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2024-11-09 17:07:10 +00:00 committed by flokli
parent a9f453f6da
commit a218f421b2
2 changed files with 2 additions and 4 deletions

View file

@ -1,4 +1,4 @@
mod combinators;
mod cache;
mod from_addr;
mod grpc;
mod lru;
@ -22,9 +22,7 @@ use tvix_castore::Error;
use crate::nar::NarCalculationService;
pub use crate::path_info::PathInfo;
pub use self::combinators::{
Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig,
};
pub use self::cache::{Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig};
pub use self::from_addr::from_addr;
pub use self::grpc::{GRPCPathInfoService, GRPCPathInfoServiceConfig};
pub use self::lru::{LruPathInfoService, LruPathInfoServiceConfig};