From ad1f8a7cb618edefb985dc3b0cb8e1bb1ffc8ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <git@minelli.swiss> Date: Tue, 25 Jun 2024 22:54:59 +0200 Subject: [PATCH] TagCommand => Rename class --- NodeApp/src/commander/tag/TagCommand.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NodeApp/src/commander/tag/TagCommand.ts b/NodeApp/src/commander/tag/TagCommand.ts index 6bff85d..7d0698a 100644 --- a/NodeApp/src/commander/tag/TagCommand.ts +++ b/NodeApp/src/commander/tag/TagCommand.ts @@ -4,7 +4,7 @@ import TagDelete from './subcommands/TagDeleteCommand'; import TagProposalCommand from './subcommands/proposal/TagProposalCommand'; -class AddTagCommand extends CommanderCommand { +class TagCommand extends CommanderCommand { protected commandName: string = 'tag'; protected defineCommand() { @@ -24,4 +24,4 @@ class AddTagCommand extends CommanderCommand { } -export default new AddTagCommand(); \ No newline at end of file +export default new TagCommand(); \ No newline at end of file -- GitLab