From c14980800b72c2a57bb27043d1423e92204d0d8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Sun, 26 May 2019 21:27:37 -0700 Subject: [PATCH] exports: stop exporting content internals --- src/lib.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index deb053e..6eeee60 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,2 @@ -mod content; -pub use crate::content::path; -pub use crate::content::read; -pub use crate::content::rm; -pub use crate::content::write; +pub mod content; +pub mod index;