blob: 9fa7ef4d5c1fb8e8a70bfdaf40cb94936792326c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#![warn(
clippy::pedantic,
clippy::nursery,
clippy::cargo,
clippy::as_underscore,
clippy::clone_on_ref_ptr,
clippy::format_push_string,
clippy::mod_module_files,
clippy::str_to_string
)]
#![allow(clippy::module_name_repetitions)]
mod emoji_str;
pub mod error;
mod request;
mod response;
mod url;
mod utils;
pub use emoji_str::*;
pub use request::*;
pub use response::*;
pub use url::*;
pub use utils::*;
|