]> git.r.bdr.sh - rbdr/lyricli/blob - Sources/Lyricli.swift
6c73e028e2ae23a0f8057ee0d5d594b4ba1c00ba
[rbdr/lyricli] / Sources / Lyricli.swift
1 /// The main Lyricli interface
2 public class Lyricli {
3 public static var version = "0.0.0-feature/option-parsing"
4
5 public static func printLyrics() {
6 print("Getting Lyrics: Not yet implemented")
7 }
8
9 public static func printTitle() {
10 print("Getting Song Title: Not yet implemented")
11 }
12
13 public static func printSources() {
14 print("Listing Sources: Not yet implemented")
15 }
16
17 public static func enableSource(_ sourceName: String) {
18 print("Enable source \(sourceName): Not yet implemented")
19 }
20
21 public static func disableSource(_ sourceName: String) {
22 print("Disable source \(sourceName): Not yet implemented")
23 }
24
25 public static func resetSource(_ sourceName: String) {
26 print("Reset source \(sourceName): Not yet implemented")
27 }
28 }