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::*;