~aleteoryx/lfm_embed

ref: ff0d799cf0e5aaa23596cb27153738ce7add16ec lfm_embed/src/http.rs -rw-r--r-- 326 bytes
ff0d799calyx Document lua, fix small theme bugs 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: AGPL-3.0-only
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)
}