mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-09 00:34:36 +00:00
8 lines
212 B
Dart
8 lines
212 B
Dart
part of '../spotify.dart';
|
|
|
|
final friendsProvider = FutureProvider<SpotifyFriends>((ref) async {
|
|
final customSpotify = ref.watch(customSpotifyEndpointProvider);
|
|
|
|
return customSpotify.getFriendActivity();
|
|
});
|