spotify_cli/spotify/
base.rs

1//! Shared Spotify API base URL configuration.
2
3pub const DEFAULT_API_BASE: &str = "https://api.spotify.com/v1";
4
5pub fn api_base() -> String {
6    let base =
7        std::env::var("SPOTIFY_CLI_API_BASE").unwrap_or_else(|_| DEFAULT_API_BASE.to_string());
8    base.trim_end_matches('/').to_string()
9}