lssa/wallet/src/cli/mod.rs

16 lines
348 B
Rust
Raw Normal View History

2025-10-13 17:25:36 +03:00
use anyhow::Result;
use crate::{SubcommandReturnValue, WalletCore};
2025-10-20 10:01:54 +03:00
pub mod account;
2025-10-14 15:29:18 +03:00
pub mod chain;
pub mod native_token_transfer_program;
pub mod pinata_program;
2025-10-13 17:25:36 +03:00
pub mod token_program;
2025-10-31 16:23:01 +02:00
pub mod config;
2025-10-13 17:25:36 +03:00
pub(crate) trait WalletSubcommand {
async fn handle_subcommand(self, wallet_core: &mut WalletCore)
-> Result<SubcommandReturnValue>;
}