Expand description
This library provides access to the Bunny API asynchronously using tokio, it’s not fully implemented but PRs are welcome.
§Getting started
- add package to your project using cargo
$ cargo add bunny-api-tokio
- Start coding
use bunny_api_tokio::{BunnyClient, error::Error};
#[tokio::main]
async fn main() -> Result<(), Error> {
let mut client = BunnyClient::new("api_key").await?;
Ok(())
}Re-exports§
pub use edge_storage::EdgeStorageClient;
Modules§
- edge_
storage - Edge Storage API
- error
- Error types for this crate.
Structs§
- Bunny
Client - API Client for bunny.net