changing components infrastructure

This commit is contained in:
filipriec
2025-03-22 15:36:49 +01:00
parent 9bf1d065d5
commit fabe1e0ca7
9 changed files with 17 additions and 6 deletions

View File

@@ -0,0 +1,4 @@
// src/components/admin_panel.rs
pub mod admin_panel;
pub use admin_panel::*;

View File

@@ -5,7 +5,6 @@ pub mod status_line;
pub mod canvas;
pub mod sidebar;
pub mod background;
pub mod intro;
pub mod admin_panel;
pub use command_line::render_command_line;
@@ -14,5 +13,4 @@ pub use status_line::render_status_line;
pub use canvas::*;
pub use sidebar::*;
pub use background::*;
pub use intro::*;
pub use admin_panel::*;

View File

@@ -0,0 +1,4 @@
// src/components/intro.rs
pub mod intro;
pub use intro::*;

View File

@@ -1,5 +1,8 @@
// src/components/mod.rs
pub mod models;
pub mod handlers;
pub mod intro;
pub mod admin_panel;
pub use handlers::*;
pub use intro::*;
pub use admin_panel::*;