mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
15 lines
295 B
Swift
15 lines
295 B
Swift
import Foundation
|
|
|
|
enum LyricsSource : Int, CustomStringConvertible {
|
|
case genius
|
|
case lrclib
|
|
case musixmatch
|
|
|
|
var description : String {
|
|
switch self {
|
|
case .genius: "Genius"
|
|
case .lrclib: "LRCLIB"
|
|
case .musixmatch: "Musixmatch"
|
|
}
|
|
}
|
|
} |