blob: 6224ab166ed19dad10fbb810508f46c54629fce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use once_cell::sync::Lazy;
pub mod guzzle;
pub mod shiggy;
pub static REQWEST_CLIENT: Lazy<reqwest::Client> = Lazy::new(|| {
reqwest::Client::builder()
.user_agent("teawieBot/0.1.0")
.build()
.unwrap_or_default()
});
|