chore: add translated message command to command list

This commit is contained in:
Kingkor Roy Tirtho 2024-05-09 16:50:42 +06:00
parent a838eadc12
commit 2b01e4fb4d

View File

@ -3,6 +3,7 @@ import 'package:args/command_runner.dart';
import 'commands/build.dart';
import 'commands/credits.dart';
import 'commands/install-dependencies.dart';
import 'commands/translated.dart';
import 'commands/untranslated.dart';
void main(List<String> args) {
@ -14,6 +15,7 @@ void main(List<String> args) {
commandRunner.addCommand(InstallDependenciesCommand());
commandRunner.addCommand(BuildCommand());
commandRunner.addCommand(CreditsCommand());
commandRunner.addCommand(TranslatedCommand());
commandRunner.addCommand(UntranslatedCommand());
commandRunner.run(args);