aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: c082736f5bc42f0f97a14a7e707eb080473da563 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![warn(rust_2018_idioms)]


pub mod client;
pub mod suggestion;

mod url;

pub use crate::client::Client;
pub use crate::suggestion::Suggestion;
pub use crate::url::SuggestionUrl;