sdk/oapiSdk/lark_oapi/core/http/handler.py

10 lines
203 B
Python
Raw Permalink Normal View History

2025-08-19 10:20:23 +00:00
from abc import ABC, abstractmethod
from lark_oapi.core.model import RawRequest, RawResponse
class HttpHandler(ABC):
@abstractmethod
def do(self, req: RawRequest) -> RawResponse:
pass