diff options
| author | Ben Beltran <ben@nsovocal.com> | 2016-11-12 23:55:27 -0600 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2016-11-12 23:55:27 -0600 |
| commit | 0b3e11a806e704fa373f0549fb3b6164d45c564a (patch) | |
| tree | 51d838dc335ad48a6b0994e531d5dc9e6d24c3ed /Sources/Lyricli.swift | |
| parent | 194a358163d7ac0a1f0ea61b1be3372c3532e1c5 (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.swift | 25 |
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") + } } |