From 2b01e4fb4d816f98581ff3b6e2330008caa1273e Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Thu, 9 May 2024 16:50:42 +0600 Subject: [PATCH] chore: add translated message command to command list --- cli/cli.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/cli.dart b/cli/cli.dart index 074c5b12..26190d4c 100644 --- a/cli/cli.dart +++ b/cli/cli.dart @@ -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 args) { @@ -14,6 +15,7 @@ void main(List args) { commandRunner.addCommand(InstallDependenciesCommand()); commandRunner.addCommand(BuildCommand()); commandRunner.addCommand(CreditsCommand()); + commandRunner.addCommand(TranslatedCommand()); commandRunner.addCommand(UntranslatedCommand()); commandRunner.run(args);