display albums from db

This commit is contained in:
austinried
2025-11-08 18:27:37 +09:00
parent 0c80dbdba5
commit ee2a276f2f
18 changed files with 316 additions and 127 deletions

6
lib/util/http.dart Normal file
View File

@@ -0,0 +1,6 @@
import 'package:http/http.dart';
class SubtracksHttpClient extends BaseClient {
@override
Future<StreamedResponse> send(BaseRequest request) => request.send();
}