icalingua-python-bot/ica-rs/plugins/base.py

14 lines
472 B
Python
Raw Normal View History

2024-02-22 12:47:20 +08:00
from typing import TYPE_CHECKING, TypeVar
if TYPE_CHECKING:
from ica_typing import NewMessage, IcaClient
else:
NewMessage = TypeVar("NewMessage")
IcaClient = TypeVar("IcaClient")
def on_message(msg: NewMessage, client: IcaClient) -> None:
2024-02-22 14:38:37 +08:00
if not (msg.is_from_self or msg.is_reply):
if msg.content == "/bot":
2024-03-16 00:15:49 +08:00
reply = msg.reply_with(f"ica-async-rs({client.version})-sync-py {client.ica_version}")
2024-02-22 12:47:20 +08:00
client.send_message(reply)