rust_jsr_registry/
default_url.rs

1use once_cell::sync::Lazy;
2use url::Url;
3
4use crate::priv_default_urls;
5// fuck it, since the url is well-formed,
6// why the fuck do we need to handle each builder & real struct with this shit
7priv_default_urls!(
8    DEFAULT_URL = "https://jsr.io",
9    DEFAULT_NPM_COMP_URL = "https://npm.jsr.io"
10);