summaryrefslogtreecommitdiff
path: root/modules/responses/response_handler.py
blob: 9cc0cf090adf0c6c446b3d74bc3990665279dc0d (plain)
1
2
3
4
5
6
from abc import ABC, abstractmethod

class ResponseHandler(ABC):
    @abstractmethod
    def respond(self, response: str):
        pass