9 lines
152 B
Python
9 lines
152 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class MessageFactory(ABC):
|
|
@staticmethod
|
|
@abstractmethod
|
|
def new(raw_message) -> object:
|
|
pass
|