~aleteoryx/lfm_embed

ref: 15a94c34407b608122a569fbda09039064e51169 lfm_embed/src/http.rs -rw-r--r-- 283 bytes
15a94c34alyx Update .gitignore 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
use std::sync::LazyLock;
use reqwest::Client;

pub(crate) fn new() -> Client {
  Client::builder().https_only(true).user_agent(concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"))).build().unwrap()
}
pub(crate) const fn lazy() -> LazyLock<Client> {
  LazyLock::new(new)
}