echidna/src/components/mod.rs

20 lines
516 B
Rust
Raw Normal View History

2021-10-18 08:02:41 +00:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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/. */
pub mod app;
2021-10-29 02:44:36 +00:00
pub mod editor;
pub mod sidebar;
pub mod tab_label;
pub mod window;
pub use app::EchidnaEditor;
pub use editor::EchidnaCoreEditor;
pub use sidebar::EchidnaSidebar;
pub use tab_label::TabLabel;
pub use window::EchidnaWindow;
2021-11-12 10:31:46 +00:00
pub mod prelude {
pub use super::window::{file::*, menubar::*};
}