Crates.io | streamshare |
lib.rs | streamshare |
version | 5.0.0 |
source | src |
created_at | 2024-10-19 20:22:30.059801 |
updated_at | 2024-10-20 19:17:46.779948 |
description | Upload to streamshare library |
homepage | https://waradu.dev |
repository | https://github.com/Waradu/streamshare |
max_upload_size | |
id | 1415690 |
size | 10,328 |
Upload files to streamshare
Upload:
let client = StreamShare::default();
let callback = |uploaded_bytes, total_bytes| {
println!(
"Uploaded {}b of {}b",
uploaded_bytes,
total_bytes
);
}
match client.upload(&file_path, callback).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),
}
Delete:
let client = StreamShare::default();
match client.delete(file_identifier, deletion_token).await {
Ok(_) => println!("File deleted successfully"),
Err(e) => eprintln!("Error deleting file: {}", e),
}
Download:
let client = StreamShare::default();
match client.download(file_identifier, path, replace).await {
Ok(_) => println!("File downloaded successfully"),
Err(e) => eprintln!("Error downloaded file: {}", e),
}
Check toss for a better example on how to use it.