mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-03-14 21:01:28 +08:00
13 lines
293 B
Dart
13 lines
293 B
Dart
import 'auto_l10n.dart';
|
|
|
|
void main(List<String> args) {
|
|
switch (args.elementAtOrNull(0)) {
|
|
case "l10n_gen":
|
|
return AutoL10nTools().genL10nFiles();
|
|
case "l10n_replace":
|
|
return AutoL10nTools().replaceL10nFiles();
|
|
default:
|
|
throw Exception("cmd not found");
|
|
}
|
|
}
|