lssa/wallet/src/cli/mod.rs
Sergio Chouhy dae79860bd wip
2025-10-21 17:05:49 -03:00

16 lines
354 B
Rust

use anyhow::Result;
use crate::{SubcommandReturnValue, WalletCore};
pub mod account;
pub mod chain;
pub mod native_token_transfer_program;
pub mod pinata_program;
pub mod token_program;
pub mod stress_tests;
pub(crate) trait WalletSubcommand {
async fn handle_subcommand(self, wallet_core: &mut WalletCore)
-> Result<SubcommandReturnValue>;
}