This commit is contained in:
Waradu 2024-10-19 22:20:44 +02:00
commit 67788708fd
No known key found for this signature in database
GPG key ID: F85AAC8BA8B8DAAD
5 changed files with 1746 additions and 0 deletions

20
README.md Normal file
View file

@ -0,0 +1,20 @@
# Streamshare
Upload files to [streamshare](https://streamshare.wireway.ch)
#### Example:
```rust
match upload(&file_path).await {
Ok((file_identifier, _deletion_token)) => {
let download_url = format!(
"https://streamshare.wireway.ch/download/{}",
file_identifier
);
println!("File uploaded successfully");
println!("Download URL: {}", download_url);
}
Err(e) => eprintln!("Error: {}", e),
}
```