- `sharry::Client` fn signatures - `sharry::ClientError` rework - `file::Uploading` saves `file_id` instead of `patch_uri` - `impl sharry::Client for ureq::Agent` into separate file
7 lines
207 B
Rust
7 lines
207 B
Rust
mod api;
|
|
mod client;
|
|
|
|
pub use api::{NewShareRequest, NewShareResponse, NotifyShareResponse, Uri};
|
|
pub use client::{Client, ClientError, Parameter};
|
|
|
|
pub type Result<T> = std::result::Result<T, ClientError>;
|