Merge branch 'refactor/exports' into feat/getting-started

feat/getting-started
Nefo Fortressia 2021-11-13 13:48:08 +07:00
commit 34dd13431c
Signed by: fortressia
GPG Key ID: 6D7972CC76174995
2 changed files with 9 additions and 0 deletions

View File

@ -11,3 +11,7 @@ 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

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