]> git.r.bdr.sh - rbdr/lyricli/blame_incremental - Sources/source_protocol.swift
Merge branch 'release/0.1.0' into develop
[rbdr/lyricli] / Sources / source_protocol.swift
... / ...
CommitLineData
1// All sources should comply with this protocol. The currentTrack computed
2// property will return a track if the conditions are met
3protocol Source {
4 var currentTrack: Track? { get }
5}