1 /// The main Lyricli interface
3 public static var version = "0.0.0-feature/option-parsing"
5 public static func printLyrics() {
7 let sourceManager = SourceManager()
9 if let currentTrack = sourceManager.currentTrack {
10 print(currentTrack.artist)
11 print(currentTrack.name)
14 print("Current track not found")
18 public static func printTitle() {
19 print("Getting Song Title: Not yet implemented")
22 public static func printSources() {
23 print("Listing Sources: Not yet implemented")
26 public static func enableSource(_ sourceName: String) {
27 print("Enable source \(sourceName): Not yet implemented")
30 public static func disableSource(_ sourceName: String) {
31 print("Disable source \(sourceName): Not yet implemented")
34 public static func resetSource(_ sourceName: String) {
35 print("Reset source \(sourceName): Not yet implemented")