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