Compare commits

..

No commits in common. "0c88ac87d91887d8eee4bc7c57882922cd522f8e" and "49605fb85498f6f3a2b517c9fa62172e0b0c4b2a" have entirely different histories.

3 changed files with 2 additions and 28 deletions

View file

@ -4,8 +4,6 @@ version = "0.1.0"
edition = "2024"
authors = ["Radical <radical@radical.fun>"]
license = "MIT"
repository = "https://git.gorb.app/gorb/bunny-api-tokio"
description = "Provides access to the Bunny CDN API asynchronously using tokio."
[dependencies]

View file

@ -101,11 +101,9 @@ impl<'a> Storage {
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let mut client = Client::new("api_key").await?;
/// let mut client = Client::new("api_key")?;
///
/// client.storage.init(Endpoint::Frankfurt, "MyStorageZone");
///
/// Ok(())
/// }
/// ```
pub fn init<T: AsRef<str>>(&mut self, endpoint: Endpoint, storage_zone: T) -> Result<(), Error> {
@ -132,8 +130,6 @@ impl<'a> Storage {
///
/// // Will put a file in STORAGE_ZONE/images/file.png
/// client.storage.upload("/images/file.png", file_bytes).await?;
///
/// Ok(())
/// }
/// ```
pub async fn upload<T: AsRef<str>>(&self, path: T, file: Bytes) -> Result<(), Error> {

View file

@ -1,22 +1,4 @@
//! This library provides access to the Bunny API asynchronously using tokio, it's not fully implemented but PRs are welcome.
//!
//! # Getting started
//! 1. add package to your project using cargo
//!
//! `$ cargo add bunny-api-tokio`
//!
//! 2. Start coding
//!
//! ```
//! use bunny_api_tokio::{Client, error::Error};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Error> {
//! let mut client = Client::new("api_key").await?;
//!
//! Ok(())
//! }
//! ```
#![deny(missing_docs)]
use std::sync::Arc;
@ -41,9 +23,7 @@ impl Client {
///
/// #[tokio::main]
/// async fn main() -> Result<(), Error> {
/// let mut client = Client::new("api_key").await?;
///
/// Ok(())
/// let mut client = Client::new("api_key")?;
/// }
/// ```
pub async fn new<T: AsRef<str>>(api_key: T) -> Result<Self, Error> {