X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/194a358163d7ac0a1f0ea61b1be3372c3532e1c5..0b3e11a806e704fa373f0549fb3b6164d45c564a:/Sources/Lyricli.swift?ds=sidebyside 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") + } }