1 /// The main Lyricli interface
3 public static var version = "0.0.0-feature/option-parsing"
5 public static func printLyrics() {
6 print("Getting Lyrics: Not yet implemented")
9 public static func printTitle() {
10 print("Getting Song Title: Not yet implemented")
13 public static func printSources() {
14 print("Listing Sources: Not yet implemented")
17 public static func enableSource(_ sourceName: String) {
18 print("Enable source \(sourceName): Not yet implemented")
21 public static func disableSource(_ sourceName: String) {
22 print("Disable source \(sourceName): Not yet implemented")
25 public static func resetSource(_ sourceName: String) {
26 print("Reset source \(sourceName): Not yet implemented")