1
2
3
4
5
6
7
use async_trait::async_trait;

#[async_trait]
pub trait SignerPort: Send + Sync {
    async fn handle_message(&self, message: Vec<u8>) -> crate::ClientResult<Vec<u8>>;
    fn is_ready(&self) -> bool;
}