Merge branch 'refactor/exports' into feat/new-file

merge-requests/20/head
Nefo Fortressia 2021-11-14 10:05:59 +07:00
commit 0bd8b34cfe
Signed by: fortressia
GPG Key ID: 6D7972CC76174995
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::*;
}