mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-04 22:33:06 +00:00
11 lines
237 B
Rust
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>;
|
|
}
|