diff --git a/src/lib.rs b/src/lib.rs index 8914c9b..a0d5a2e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,11 +3,12 @@ //! give you corrupted data, even if cache files get corrupted or manipulated. mod content; +mod errors; +mod index; + pub mod get; pub mod put; pub mod rm; -mod index; -mod errors; pub use errors::Error; pub use index::Entry;