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:
parent
a9f453f6da
commit
a218f421b2
2 changed files with 2 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
mod combinators;
|
mod cache;
|
||||||
mod from_addr;
|
mod from_addr;
|
||||||
mod grpc;
|
mod grpc;
|
||||||
mod lru;
|
mod lru;
|
||||||
|
@ -22,9 +22,7 @@ use tvix_castore::Error;
|
||||||
use crate::nar::NarCalculationService;
|
use crate::nar::NarCalculationService;
|
||||||
pub use crate::path_info::PathInfo;
|
pub use crate::path_info::PathInfo;
|
||||||
|
|
||||||
pub use self::combinators::{
|
pub use self::cache::{Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig};
|
||||||
Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig,
|
|
||||||
};
|
|
||||||
pub use self::from_addr::from_addr;
|
pub use self::from_addr::from_addr;
|
||||||
pub use self::grpc::{GRPCPathInfoService, GRPCPathInfoServiceConfig};
|
pub use self::grpc::{GRPCPathInfoService, GRPCPathInfoServiceConfig};
|
||||||
pub use self::lru::{LruPathInfoService, LruPathInfoServiceConfig};
|
pub use self::lru::{LruPathInfoService, LruPathInfoServiceConfig};
|
||||||
|
|
Loading…
Add table
Reference in a new issue