rustfinity 0.4.9

Rustfinity.com CLI
1
2
3
4
5
6
7
8
9
10
pub const GITHUB_CHALLENGES_BASE_URL: &'static str =
    "https://raw.githubusercontent.com/dcodesdev/rustfinity.com/main/challenges";

pub const GITHUB_REPO_URL: &'static str = "https://www.github.com/dcodesdev/rustfinity.com";

const DEFAULT_API_BASE_URL: &str = "https://cloud-api.rustfinity.com/api";

pub fn api_base_url() -> String {
    std::env::var("RUSTFINITY_CLOUD_API_URL").unwrap_or_else(|_| DEFAULT_API_BASE_URL.to_string())
}