]> git.r.bdr.sh - rbdr/lyricli/blob - Sources/source_protocol.swift
Improve comments in code
[rbdr/lyricli] / Sources / source_protocol.swift
1 // All sources should comply with this protocol. The currentTrack computed
2 // property will return a track if the conditions are met
3 protocol Source {
4 var currentTrack: Track? { get }
5 }