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.
For oss currently only supports viewing the bucket list
rust
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);
}