aboutsummaryrefslogtreecommitdiff
path: root/Sources/Lyricli.swift
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2016-11-13 00:01:00 -0600
committerBen Beltran <ben@nsovocal.com>2016-11-13 00:01:00 -0600
commit1f7088f6391dfbffcd8f243f8d1509be8a209604 (patch)
tree790b7ffcb61e23f08d97559833c7208ee55b8ad9 /Sources/Lyricli.swift
parentbcd37f402a2586d051ac10a6a4982c8c226b2cce (diff)
parent8b945f7eefe50a5d4230a765b8be9adb94e1678b (diff)
Merge branch 'feature/option-parsing' into develop
Diffstat (limited to 'Sources/Lyricli.swift')
-rw-r--r--Sources/Lyricli.swift28
1 files changed, 28 insertions, 0 deletions
diff --git a/Sources/Lyricli.swift b/Sources/Lyricli.swift
new file mode 100644
index 0000000..6c73e02
--- /dev/null
+++ b/Sources/Lyricli.swift
@@ -0,0 +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")
+ }
+}