flowfull 0.1.0

Async Rust client for Flowfull and Flowless-compatible backends
Documentation
1
2
3
4
5
6
7
8
9
use flowfull::FlowfullClient;

#[tokio::main]
async fn main() -> flowfull::Result<()> {
    let client = FlowfullClient::new("https://api.example.com")?;
    let data: serde_json::Value = client.get("/health").await?;
    println!("{data:#?}");
    Ok(())
}