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

15 lines
308 B
Rust

mod address_book;
mod home;
mod lock_screen;
mod mailbox;
mod market;
mod settings;
mod wallet;
pub use address_book::AddressBookApp;
pub use home::HomeApp;
pub use lock_screen::LockScreenApp;
pub use mailbox::MailBoxApp;
pub use market::MarketApp;
pub use settings::SettingsApp;
pub use wallet::WalletApp;