mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
9 lines
255 B
Dart
9 lines
255 B
Dart
part of sonarr_commands;
|
|
|
|
Future<List<SonarrCommand>> _commandCommandQueue(Dio client) async {
|
|
Response response = await client.get('command');
|
|
return (response.data as List)
|
|
.map((command) => SonarrCommand.fromJson(command))
|
|
.toList();
|
|
}
|