misc: sort mod declarations in lib.rs

This commit is contained in:
Kat Marchán 2019-06-05 14:09:58 +02:00
parent 261f190e4e
commit b54a3a4f82
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 3 additions and 2 deletions

View File

@ -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;