accounts: move accounts to own module
Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
1
crates/notedeck/src/account/mod.rs
Normal file
1
crates/notedeck/src/account/mod.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
pub mod accounts;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
pub mod abbrev;
|
pub mod abbrev;
|
||||||
mod accounts;
|
mod account;
|
||||||
mod app;
|
mod app;
|
||||||
mod args;
|
mod args;
|
||||||
mod context;
|
mod context;
|
||||||
@@ -33,7 +33,9 @@ mod user_account;
|
|||||||
mod wallet;
|
mod wallet;
|
||||||
mod zaps;
|
mod zaps;
|
||||||
|
|
||||||
pub use accounts::{AccountData, Accounts, AccountsAction, AddAccountAction, SwitchAccountAction};
|
pub use account::accounts::{
|
||||||
|
AccountData, Accounts, AccountsAction, AddAccountAction, SwitchAccountAction,
|
||||||
|
};
|
||||||
pub use app::{App, AppAction, Notedeck};
|
pub use app::{App, AppAction, Notedeck};
|
||||||
pub use args::Args;
|
pub use args::Args;
|
||||||
pub use context::AppContext;
|
pub use context::AppContext;
|
||||||
|
|||||||
Reference in New Issue
Block a user