mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-02-03 21:13:19 +00:00
16 lines
354 B
Rust
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>;
|
|
}
|