8 lines
140 B
Python
Raw Normal View History

2025-08-15 11:01:21 +05:00
from abc import ABC, abstractmethod
class MessageFactory(ABC):
@abstractmethod
2025-08-15 11:09:40 +05:00
def new(self, raw_message) -> object:
2025-08-15 11:01:21 +05:00
pass