Skip to main content

git_cache_proxy/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2//! Library surface for git-cache-proxy.
3//!
4//! The modules are exposed as a library (in addition to the `git-cache-proxy`
5//! binary in `main.rs`) so that integration tests can drive the HTTP router and
6//! the git cache in-process. See the binary crate for the runnable entry point.
7
8pub mod config;
9pub mod evict;
10pub mod git;
11pub mod lfs;
12pub mod metrics;
13pub mod repo;
14pub mod server;