2025-08-15 12:28:39 +05:00

9 lines
152 B
Python

from abc import ABC, abstractmethod
class MessageFactory(ABC):
@staticmethod
@abstractmethod
def new(raw_message) -> object:
pass