aboutsummaryrefslogtreecommitdiff
path: root/Sources/Lyricli.swift
diff options
context:
space:
mode:
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")
+ }
+}