object-storage 0.1.1

This library is used to manipulate oss or cos
Documentation

object storage

The goal of this library is to make a library that can use both "Aliyun-oss" and "Tencent Cloud-cos", simplifying the steps of use and allowing development to focus on business logic.

oss

For oss currently only supports viewing the bucket list

use object_storage::oss::Auth;
fn main() {
    let auth = Auth::new("your aliyun oss AccessKeyId", "your aliyun oss AccessKeySecret");
    let buck_list = auth.list_bucket();
    println!("{:#?}", buck_list);
}