proxy: Move module base files into module directory (#9297)

This commit is contained in:
Folke Behrens
2024-10-07 16:25:34 +02:00
committed by GitHub
parent 8cd7b5bf54
commit ad267d849f
14 changed files with 0 additions and 0 deletions

7
proxy/src/cache/mod.rs vendored Normal file
View File

@@ -0,0 +1,7 @@
pub(crate) mod common;
pub(crate) mod endpoints;
pub(crate) mod project_info;
mod timed_lru;
pub(crate) use common::{Cache, Cached};
pub(crate) use timed_lru::TimedLru;