add trackiterator

This commit is contained in:
Drew Weymouth
2023-04-20 19:23:15 -07:00
parent a20f047c12
commit 51efab082e
2 changed files with 46 additions and 0 deletions
+4
View File
@@ -8,6 +8,10 @@ type AlbumIterator interface {
Next() *subsonic.AlbumID3
}
type TrackIterator interface {
Next() *subsonic.Child
}
type LibraryManager struct {
PreCacheCoverFn func(coverID string)