integrations.web.api
integrations/web/api.py
1""" 2integrations/web/api.py 3""" 4 5from typing import TYPE_CHECKING 6 7from integrations.base.interface import APIInterface 8 9if TYPE_CHECKING: 10 from integrations.protocols import MessageParserProtocol 11 12 13class AdapterAPI(APIInterface): 14 """ダミークラス""" 15 16 def post(self, m: "MessageParserProtocol") -> None: 17 """Abstractmethod dummy""" 18 _ = m
14class AdapterAPI(APIInterface): 15 """ダミークラス""" 16 17 def post(self, m: "MessageParserProtocol") -> None: 18 """Abstractmethod dummy""" 19 _ = m
ダミークラス