From 0b3e11a806e704fa373f0549fb3b6164d45c564a Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 12 Nov 2016 23:55:27 -0600 Subject: Add all options from original lyricli Options are mocked but pointing to correct place in library --- Sources/Lyricli.swift | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'Sources/Lyricli.swift') 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") + } } -- cgit