mirror of
https://github.com/creating2morrow/neveko.git
synced 2025-01-27 13:05:55 +00:00
15 lines
308 B
Rust
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;
|