mi.abc.chat のソースコード

from abc import ABC, abstractmethod


[ドキュメント]class AbstractChat(ABC): @abstractmethod async def send(self) -> 'AbstractChatContent': pass
[ドキュメント]class AbstractChatContent(ABC): @abstractmethod async def delete(self): pass