mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
31 lines
951 B
Dart
31 lines
951 B
Dart
library spotify;
|
|
|
|
import 'package:collection/collection.dart';
|
|
import 'package:intl/intl.dart';
|
|
import 'package:spotify/spotify.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
// ignore: depend_on_referenced_packages, implementation_imports
|
|
import 'package:riverpod/src/async_notifier.dart';
|
|
import 'package:spotube/provider/custom_spotify_endpoint_provider.dart';
|
|
import 'package:spotube/provider/spotify_provider.dart';
|
|
import 'package:spotube/provider/user_preferences/user_preferences_provider.dart';
|
|
|
|
part 'album/favorite.dart';
|
|
part 'album/tracks.dart';
|
|
part 'album/releases.dart';
|
|
part 'album/is_saved.dart';
|
|
|
|
part 'artist/artist.dart';
|
|
part 'artist/is_following.dart';
|
|
part 'artist/following.dart';
|
|
part 'artist/top_tracks.dart';
|
|
part 'artist/albums.dart';
|
|
|
|
part 'category/genres.dart';
|
|
part 'category/categories.dart';
|
|
part 'category/playlists.dart';
|
|
|
|
part 'utils/mixin.dart';
|
|
part 'utils/state.dart';
|
|
part 'utils/provider.dart';
|