mirror of
https://github.com/austinried/subtracks.git
synced 2026-02-10 23:02:43 +01:00
bring in database
switch to just using source models (no extra db fields) start re-implementing sync service
This commit is contained in:
@@ -3,11 +3,11 @@ import 'models.dart';
|
||||
abstract class MusicSource {
|
||||
Future<void> ping();
|
||||
|
||||
Stream<SourceAlbum> allAlbums();
|
||||
Stream<SourceArtist> allArtists();
|
||||
Stream<SourcePlaylist> allPlaylists();
|
||||
Stream<SourceSong> allSongs();
|
||||
Stream<SourcePlaylistSong> allPlaylistSongs();
|
||||
Stream<Album> allAlbums();
|
||||
Stream<Artist> allArtists();
|
||||
Stream<Playlist> allPlaylists();
|
||||
Stream<Song> allSongs();
|
||||
Stream<PlaylistSong> allPlaylistSongs();
|
||||
|
||||
Uri streamUri(String songId);
|
||||
Uri downloadUri(String songId);
|
||||
|
||||
Reference in New Issue
Block a user