Files
jadb/lib/_data_ingestion/kanjivg/seed_data.dart
h7x4 ffd12ed90a
All checks were successful
Build and test / build (push) Successful in 9m26s
WIP: add kanjivg data
2026-04-09 14:16:21 +09:00

8 lines
188 B
Dart

import 'package:sqflite_common/sqflite.dart';
Future<void> seedKanjiVGData(Iterable<String> xmlContents, Database db) async {
final b = db.batch();
await b.commit(noResult: true);
}