This crate is a wrapper around the uptobox api.
```rust // Get the files of //dev let res = uptobox.get_files(&GetFiles::new("//dev")).await;
// Get the files of //dev with an orderby, an offset and a limit let res = uptobox .getfiles( &GetFiles::new("//dev") .order_by(OrderBy::FileSize) .offset(2) .limit(50), ) .await;
// Move the files to a folder let res = uptobox .movefiles(vec!["fileid1", "fileid_2"], 000000000) .await; ```