tinyurl-rs 0.2.0

Crate to simplify using tinyurl.com to shorten long urls in async rust.
Documentation
1
2
3
4
5
6
7
mod api;
mod error;
mod types;

pub use crate::api::{TinyUrlAPI, TinyUrlOpenAPI};
pub use crate::error::{Error, Result};
pub use crate::types::CreateRequest;