aboutsummaryrefslogtreecommitdiff
path: root/Sources/Lyricli.swift
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2016-11-12 23:55:27 -0600
committerBen Beltran <ben@nsovocal.com>2016-11-12 23:55:27 -0600
commit0b3e11a806e704fa373f0549fb3b6164d45c564a (patch)
tree51d838dc335ad48a6b0994e531d5dc9e6d24c3ed /Sources/Lyricli.swift
parent194a358163d7ac0a1f0ea61b1be3372c3532e1c5 (diff)
Add all options from original lyricli
Options are mocked but pointing to correct place in library
Diffstat (limited to 'Sources/Lyricli.swift')
-rw-r--r--Sources/Lyricli.swift25
1 files changed, 25 insertions, 0 deletions
diff --git a/Sources/Lyricli.swift b/Sources/Lyricli.swift
index 669dac9..6c73e02 100644
--- a/Sources/Lyricli.swift
+++ b/Sources/Lyricli.swift
@@ -1,3 +1,28 @@
+/// The main Lyricli interface
public class Lyricli {
public static var version = "0.0.0-feature/option-parsing"
+
+ public static func printLyrics() {
+ print("Getting Lyrics: Not yet implemented")
+ }
+
+ public static func printTitle() {
+ print("Getting Song Title: Not yet implemented")
+ }
+
+ public static func printSources() {
+ print("Listing Sources: Not yet implemented")
+ }
+
+ public static func enableSource(_ sourceName: String) {
+ print("Enable source \(sourceName): Not yet implemented")
+ }
+
+ public static func disableSource(_ sourceName: String) {
+ print("Disable source \(sourceName): Not yet implemented")
+ }
+
+ public static func resetSource(_ sourceName: String) {
+ print("Reset source \(sourceName): Not yet implemented")
+ }
}