mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-08 16:23:12 +00:00
16 lines
348 B
Rust
16 lines
348 B
Rust
use anyhow::Result;
|
|
|
|
use crate::{SubcommandReturnValue, WalletCore};
|
|
|
|
pub mod account;
|
|
pub mod chain;
|
|
pub mod config;
|
|
pub mod native_token_transfer_program;
|
|
pub mod pinata_program;
|
|
pub mod token_program;
|
|
|
|
pub(crate) trait WalletSubcommand {
|
|
async fn handle_subcommand(self, wallet_core: &mut WalletCore)
|
|
-> Result<SubcommandReturnValue>;
|
|
}
|