flatten api surface

This commit is contained in:
Smitty 2021-05-28 09:56:13 -04:00
parent d1d175628f
commit dab2888135

View file

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