lssa/wallet/src/cli/mod.rs
2025-10-13 17:25:36 +03:00

11 lines
237 B
Rust

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