Merge branch 'refactor/exports' into feat/workspaces

merge-requests/12/head
Nefo Fortressia 2021-11-16 14:46:23 +07:00
commit 9fa1915be2
Signed by: fortressia
GPG Key ID: 6D7972CC76174995
4 changed files with 17 additions and 4 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

@ -2,9 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
mod file;
mod imp;
pub mod file;
pub mod imp;
pub mod menubar;
use glib::object::IsA;

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