fix(format) formatting

pull/2/head
ashar 2024-06-06 14:03:17 +07:00
parent 63a849ed7b
commit 7bd79bffd2
2 changed files with 2 additions and 4 deletions

View File

@ -6,6 +6,5 @@ import { ErrorLogService } from '../../data/services/error-log.service';
export class RecordErrorLogHandler implements IEventHandler<RecordErrorLog> { export class RecordErrorLogHandler implements IEventHandler<RecordErrorLog> {
constructor(private dataservice: ErrorLogService) {} constructor(private dataservice: ErrorLogService) {}
async handle(event: RecordErrorLog) { async handle(event: RecordErrorLog) {}
}
} }

View File

@ -3,6 +3,5 @@ import { RecordLog } from '../entities/log.event';
@EventsHandler(RecordLog) @EventsHandler(RecordLog)
export class RecordLogHandler implements IEventHandler<RecordLog> { export class RecordLogHandler implements IEventHandler<RecordLog> {
async handle(event: RecordLog) { async handle(event: RecordLog) {}
}
} }