//! Bindings to the [Edge Storage API](https://docs.bunny.net/reference/storage-api).
modstorage_zone;modupload;pubusestorage_zone::StorageZone;pubuseupload::{upload_file_by_path, upload_file_data, Error as UploadError};/// Errors that may occur while using the Edge Storage API.
#[derive(Debug, thiserror::Error)]pubenumError{/// Error while using the file upload API.
#[error(transparent)]
Upload(#[from] UploadError),}