mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 06:33:43 +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");
|
|
}
|
|
}
|