mirror of https://github.com/zkat/cacache-rs.git
misc: sort mod declarations in lib.rs
This commit is contained in:
parent
261f190e4e
commit
b54a3a4f82
|
|
@ -3,11 +3,12 @@
|
||||||
//! give you corrupted data, even if cache files get corrupted or manipulated.
|
//! give you corrupted data, even if cache files get corrupted or manipulated.
|
||||||
|
|
||||||
mod content;
|
mod content;
|
||||||
|
mod errors;
|
||||||
|
mod index;
|
||||||
|
|
||||||
pub mod get;
|
pub mod get;
|
||||||
pub mod put;
|
pub mod put;
|
||||||
pub mod rm;
|
pub mod rm;
|
||||||
mod index;
|
|
||||||
mod errors;
|
|
||||||
|
|
||||||
pub use errors::Error;
|
pub use errors::Error;
|
||||||
pub use index::Entry;
|
pub use index::Entry;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue