modules.rs

 1mod chat_panel;
 2mod project_panel;
 3mod status_bar;
 4mod tab_bar;
 5mod title_bar;
 6
 7pub use chat_panel::*;
 8pub use project_panel::*;
 9pub use status_bar::*;
10pub use tab_bar::*;
11pub use title_bar::*;