7 lines
141 B
Rust
7 lines
141 B
Rust
use anyhow::Result;
|
|
|
|
pub(crate) trait ICryptoProvider {
|
|
async fn request(&self) -> Result<()>;
|
|
async fn sign(&self) -> Result<()>;
|
|
}
|