use anyhow::Result;
#[jsonrpc_client::api]
pub trait Math {
async fn subtract(&self, subtrahend: i64, minuend: i64) -> i64;
}
#[jsonrpc_client::implement(Math)]
struct Client {
inner: reqwest::Client,
base_url: jsonrpc_client::Url,
}
impl Client {
fn new(base_url: String) -> Result<Self> {
Ok(Self {
inner: reqwest::Client::new(),
base_url: base_url.parse()?,
})
}
fn with_path(self, path: &str) -> Result<Self> {
Ok(Self {
base_url: self.base_url.join(path)?,
..self
})
}
}
#[tokio::main]
async fn main() -> Result<()> {
let client = Client::new("http://example-jsonrpc.org/".to_owned())?;
let client_foobar = client.with_path("foobar")?;
let _ = client_foobar.subtract(10, 5).await?;
Ok(())
}