]> git.r.bdr.sh - rbdr/lyricli/blame - Sources/Lyricli.swift
Add all options from original lyricli
[rbdr/lyricli] / Sources / Lyricli.swift
CommitLineData
0b3e11a8 1/// The main Lyricli interface
194a3581
BB
2public class Lyricli {
3 public static var version = "0.0.0-feature/option-parsing"
0b3e11a8
BB
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 }
194a3581 28}