kotones-auto-assistant/kotonebot/ui/pushkit/protocol.py

14 lines
253 B
Python

from typing import Protocol
from cv2.typing import MatLike
class PushkitProtocol(Protocol):
def push(
self,
title: str,
message: str,
*,
images: list[str | MatLike] | None = None,
) -> None:
...