Files
jadb/lib/table_names/tanos_jlpt.dart
h7x4 0f7854a4fc
All checks were successful
Build and test / evals (push) Successful in 11m34s
migrations: add version tables for all data sources
2026-03-03 12:59:58 +09:00

7 lines
203 B
Dart

abstract class TanosJLPTTableNames {
static const String version = 'JMdict_JLPT_Version';
static const String jlptTag = 'JMdict_JLPTTag';
static Set<String> get allTables => {version, jlptTag};
}