shrupl/src/sharry/mod.rs

8 lines
207 B
Rust
Raw Normal View History

2025-05-23 01:11:11 +00:00
mod api;
2025-06-08 01:20:41 +00:00
mod client;
2025-05-22 17:34:44 +00:00
pub use api::{NewShareRequest, NewShareResponse, NotifyShareResponse, Uri};
pub use client::{Client, ClientError, Parameter};
pub type Result<T> = std::result::Result<T, ClientError>;