From 1dadded8aff9f7896e44abcf74740f41bfcb3994 Mon Sep 17 00:00:00 2001 From: markuczy Date: Wed, 19 Jun 2024 08:07:50 +0200 Subject: [PATCH] fix: added new line --- libs/accelerator/src/lib/topic/topic-message-type.ts | 7 +++---- libs/accelerator/src/lib/topic/topic-message.ts | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/accelerator/src/lib/topic/topic-message-type.ts b/libs/accelerator/src/lib/topic/topic-message-type.ts index f31edac9..7d35285c 100644 --- a/libs/accelerator/src/lib/topic/topic-message-type.ts +++ b/libs/accelerator/src/lib/topic/topic-message-type.ts @@ -1,5 +1,4 @@ export const enum TopicMessageType { - TopicNext = 'TopicNext', - TopicGet = 'TopicGet', - } - \ No newline at end of file + TopicNext = 'TopicNext', + TopicGet = 'TopicGet', +} diff --git a/libs/accelerator/src/lib/topic/topic-message.ts b/libs/accelerator/src/lib/topic/topic-message.ts index 1cb87734..d659c5b3 100644 --- a/libs/accelerator/src/lib/topic/topic-message.ts +++ b/libs/accelerator/src/lib/topic/topic-message.ts @@ -1,6 +1,7 @@ import { Message } from './message' import { TopicMessageType } from './topic-message-type' + export class TopicMessage extends Message { constructor(type: TopicMessageType, public name: string, public version: number) { super(type)