gitui/asyncgit/src/cached/mod.rs
2020-07-04 18:12:54 +02:00

7 lines
190 B
Rust

//! cached lookups:
//! parts of the sync api that might take longer
//! to compute but change seldom so doing them async might be overkill
mod branchname;
pub use branchname::BranchName;