From dab2888135a81499e1191363a796e48dacaacd20 Mon Sep 17 00:00:00 2001 From: Smitty Date: Fri, 28 May 2021 09:56:13 -0400 Subject: [PATCH] flatten api surface --- src/lib.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e132290..193ab9e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,10 @@ //! Rust library for Wikidata. It has some support for Wikibase as well, although the main focus is //! supporting the Wikidata instance. -pub mod entity; -pub mod ids; -pub mod text; +pub(crate) mod entity; +pub(crate) mod ids; +pub(crate) mod text; + +pub use entity::*; +pub use ids::*; +pub use text::*;