1 2 3 4 5 6
from abc import ABC, abstractmethod class ResponseHandler(ABC): @abstractmethod def respond(self, response: str): pass