refactor: reexport functionalities to the crate for easier importing #13

Merged
fortressia merged 1 commits from refactor/exports into main 2021-12-17 02:29:12 +00:00
1 changed files with 5 additions and 0 deletions

View File

@ -13,3 +13,8 @@ fn main() {
std::process::exit(app.run());
}
pub mod prelude {
pub use super::components::prelude::*;
pub use super::lib::prelude::*;
}