use constant for message handler

This commit is contained in:
sbriat 2023-10-18 10:26:18 +02:00
parent 5085fd02ec
commit 11ccefcc30
1 changed files with 2 additions and 1 deletions

View File

@ -3,13 +3,14 @@ import { RabbitSubscribe } from '@mobicoop/message-broker-module';
import { CommandBus } from '@nestjs/cqrs';
import { CreateAdCommand } from '@modules/ad/core/application/commands/create-ad/create-ad.command';
import { Ad } from './ad.types';
import { AD_CREATED_MESSAGE_HANDLER } from '@src/app.constants';
@Injectable()
export class AdCreatedMessageHandler {
constructor(private readonly commandBus: CommandBus) {}
@RabbitSubscribe({
name: 'adCreated',
name: AD_CREATED_MESSAGE_HANDLER,
})
public async adCreated(message: string) {
try {