Skip to main content

Crate qm_s3

Crate qm_s3 

Source
Expand description

S3 helper functions.

This crate provides utilities for interacting with Amazon S3-compatible object storage services.

§Features

  • Object upload/download operations
  • Pre-signed URL generation
  • Bucket management utilities
  • Multipart upload support

§Usage

```ignore use qm_s3::S3Client;

#[tokio::main] async fn main() -> anyhow::Result<()> { let client = S3Client::new(“bucket-name”).await?; client.put_object(“key”, data).await?; Ok(()) } ```

Functions§

add
Adds two numbers together.