Files
SpotiFLAC/backend/provider_endpoints.go
T
afkarxyz 0093df6016 v7.1.6
2026-04-26 07:33:40 +07:00

22 lines
565 B
Go

package backend
const amazonMusicAPIBaseURL = "https://amazon.spotbye.qzz.io"
const qobuzMusicDLDownloadAPIURL = "https://www.musicdl.me/api/qobuz/download"
var defaultQobuzStreamAPIBaseURLs = []string{
"https://dab.yeet.su/api/stream?trackId=",
"https://dabmusic.xyz/api/stream?trackId=",
}
func GetQobuzStreamAPIBaseURLs() []string {
return append([]string(nil), defaultQobuzStreamAPIBaseURLs...)
}
func GetQobuzMusicDLDownloadAPIURL() string {
return qobuzMusicDLDownloadAPIURL
}
func GetAmazonMusicAPIBaseURL() string {
return amazonMusicAPIBaseURL
}