From fb0a4e731d1a417ab6d975b74444c06aed1a9a63 Mon Sep 17 00:00:00 2001 From: Nefo Fortressia Date: Fri, 12 Nov 2021 17:29:45 +0700 Subject: [PATCH] refactor: reexport components in components/mod.rs --- src/components/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/mod.rs b/src/components/mod.rs index 6679c17..45dd3dc 100644 --- a/src/components/mod.rs +++ b/src/components/mod.rs @@ -6,3 +6,8 @@ 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;