8 lines
146 B
Python
8 lines
146 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class MessageFactory(ABC):
|
|
@abstractmethod
|
|
def new(self, raw_message: dict) -> object:
|
|
pass
|