Files
simple-oss/README.md
2020-01-09 01:53:07 +08:00

17 lines
312 B
Markdown

# simple-oss
Simple Alibaba Cloud OSS Client in Rust
```rust
let oss_client = OSSClient::new("<endpoint>", "<access_key_id>", "<access_key_secret>");
oss_cleint.put_file_content("<bucket>", "helloworld.txt", "hello world!").await?;
```
#### Changelog
* v0.2.0
* Use `async/await` by `reqwest v0.10.0`