refactor: reexport functionalities to the crate for easier importing

Merge branch 'refactor/exports' into 'main'

See merge request EchidnaHQ/Echidna!13
merge-requests/15/merge
Nefo Fortressia 2021-12-17 02:29:11 +00:00
commit 4583f993ab
3 changed files with 15 additions and 1 deletions

View File

@ -6,3 +6,12 @@ pub mod app;
pub mod editor;
pub mod sidebar;
pub mod window;
pub use app::EchidnaEditor;
pub use editor::EchidnaCoreEditor;
pub use sidebar::EchidnaSidebar;
pub use window::EchidnaWindow;
pub mod prelude {
pub use super::window::{file::*, menubar::*};
}

View File

@ -5,5 +5,5 @@
pub mod closeable_tab;
pub mod prelude {
pub use super::closeable_tab::ClosableTabImplementedNotebook;
pub use super::closeable_tab::*;
}

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