]> git.r.bdr.sh - rbdr/lyricli/blobdiff - Sources/lyricli/sources/source_protocol.swift
add distribution to gitignore
[rbdr/lyricli] / Sources / lyricli / sources / source_protocol.swift
index 0885994d338589b456f5dde7f85b1062c204c844..8d52603667113ae28c08a3c7a390ed59d830bf72 100644 (file)
@@ -2,4 +2,8 @@
 // property will return a track if the conditions are met
 protocol Source {
     var currentTrack: Track? { get }
+
+    func disable() -> Bool
+    func enable() -> Bool
+    func reset() -> Bool
 }