ubi 0.9.0

The Universal Binary Installer library
Documentation
1
2
3
4
5
6
7
8
use std::sync::LazyLock;
use url::Url;

pub(crate) static PROJECT_BASE_URL: LazyLock<Url> =
    LazyLock::new(|| Url::parse("https://codeberg.org").unwrap());

pub(crate) static DEFAULT_API_BASE_URL: LazyLock<Url> =
    LazyLock::new(|| Url::parse("https://codeberg.org/api/v1").unwrap());