]> git.r.bdr.sh - rbdr/lyricli/blame - Sources/source_protocol.swift
Update CHANGELOG
[rbdr/lyricli] / Sources / source_protocol.swift
CommitLineData
d852b84e
BB
1// All sources should comply with this protocol. The currentTrack computed
2// property will return a track if the conditions are met
4425e900
BB
3protocol Source {
4 var currentTrack: Track? { get }
5}