Make widget submodules public

This will make the generated documentation more readable once I add
module docstrings. I'm still reexporting the module contents to keep
imports nice and tidy.
This commit is contained in:
Joscha 2023-02-19 14:24:28 +01:00
parent 397d3a6eac
commit cb483431cc

View file

@ -1,15 +1,15 @@
mod background; pub mod background;
mod border; pub mod border;
mod cursor; pub mod cursor;
mod editor; pub mod editor;
mod either; pub mod either;
mod empty; pub mod empty;
mod float; pub mod float;
mod join; pub mod join;
mod layer; pub mod layer;
mod padding; pub mod padding;
mod resize; pub mod resize;
mod text; pub mod text;
pub use background::*; pub use background::*;
pub use border::*; pub use border::*;