Files
2026-07-13 13:06:23 +08:00

12 lines
364 B
Python

from typing import Any
from .types import BaseEvent, EventInput, Task, GroupEventReturns
from .utils import generate_uuid
class BaseBroker:
async def append(self, event: BaseEvent, event_input: EventInput) -> Task:
raise NotImplementedError()
async def callback_after_run_done(self) -> tuple[BaseEvent, Any]:
raise NotImplementedError()