mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
17 lines
442 B
Swift
17 lines
442 B
Swift
import Foundation
|
|
|
|
extension UserDefaults {
|
|
@UserDefault(
|
|
key: "lyricsOptions",
|
|
defaultValue: LyricsOptions(
|
|
romanization: false,
|
|
musixmatchLanguage: Locale.current.languageCode ?? "",
|
|
lrclibUrl: LrclibLyricsRepository.originalApiUrl,
|
|
geniusFallback: true,
|
|
showFallbackReasons: true,
|
|
hideOnError: false
|
|
)
|
|
)
|
|
static var lyricsOptions
|
|
}
|