neveko/neveko-gui/src/apps/mod.rs

16 lines
308 B
Rust
Raw Normal View History

2023-04-30 15:55:41 +00:00
mod address_book;
2023-05-09 21:28:07 +00:00
mod home;
2023-04-30 15:55:41 +00:00
mod lock_screen;
mod mailbox;
2023-06-05 16:39:29 +00:00
mod market;
2023-04-30 15:55:41 +00:00
mod settings;
mod wallet;
pub use address_book::AddressBookApp;
pub use home::HomeApp;
2023-05-09 21:28:07 +00:00
pub use lock_screen::LockScreenApp;
2023-04-30 15:55:41 +00:00
pub use mailbox::MailBoxApp;
2023-06-05 16:39:29 +00:00
pub use market::MarketApp;
2023-04-30 15:55:41 +00:00
pub use settings::SettingsApp;
pub use wallet::WalletApp;