accounts: move accounts to own module

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-06-25 16:11:22 -04:00
parent e29ea35ee5
commit e91684a7d5
3 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1 @@
pub mod accounts;

View File

@@ -1,5 +1,5 @@
pub mod abbrev;
mod accounts;
mod account;
mod app;
mod args;
mod context;
@@ -33,7 +33,9 @@ mod user_account;
mod wallet;
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 args::Args;
pub use context::AppContext;