1 2 3 4 5 6 7 8 9 10
use std::error::Error; // Input adapter example pub struct RestApi { handler: Arc<dyn CommandHandler>, } // Output adapter example pub struct BitcoinNodeClient { rpc_client: Arc<Client>, }