mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-16 22:39:34 +00:00
16 lines
396 B
Dart
16 lines
396 B
Dart
|
|
import 'package:just_audio/just_audio.dart';
|
||
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||
|
|
import 'package:shelfsdk/audiobookshelf_api.dart';
|
||
|
|
|
||
|
|
part 'abs_status.g.dart';
|
||
|
|
|
||
|
|
@Riverpod(keepAlive: true)
|
||
|
|
class PlayerList extends _$PlayerList {
|
||
|
|
@override
|
||
|
|
List<AudioSource> build() {
|
||
|
|
return [];
|
||
|
|
}
|
||
|
|
|
||
|
|
Future<void> setAudioBook(BookExpanded book, {Duration? position}) async {}
|
||
|
|
}
|