diff --git a/NodeApp/src/commander/enonce/EnonceCommand.ts b/NodeApp/src/commander/enonce/EnonceCommand.ts index 4ae73d891c33dc718798e7237a0cfbd000e4281d..1594e6187339b0f6209eb9c5f6b98423e2d759cc 100644 --- a/NodeApp/src/commander/enonce/EnonceCommand.ts +++ b/NodeApp/src/commander/enonce/EnonceCommand.ts @@ -1,5 +1,5 @@ import CommanderCommand from '../CommanderCommand'; -import CreateEnonceCommand from './EnonceCreateCommand'; +import EnonceCreateCommand from './EnonceCreateCommand'; class EnonceCommand extends CommanderCommand { @@ -23,7 +23,7 @@ class EnonceCommand extends CommanderCommand { } protected defineSubCommands() { - CreateEnonceCommand.registerOnCommand(this.command); + EnonceCreateCommand.registerOnCommand(this.command); } protected async commandAction(options: any): Promise<void> { }