feat: 多语言提取器

This commit is contained in:
2024-03-14 21:49:21 +08:00
parent 8426570ced
commit a84852d4f0
16 changed files with 432 additions and 17 deletions

View File

@ -0,0 +1,10 @@
import 'auto_l10n.dart';
void main(List<String> args) {
switch (args.elementAtOrNull(0)) {
case "gen":
return AutoL10nTools().genL10nFiles();
default:
throw Exception("cmd not found");
}
}