mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2024-11-23 20:45:06 +08:00
25 lines
998 B
Python
25 lines
998 B
Python
from typing import TYPE_CHECKING, TypeVar
|
|
|
|
if TYPE_CHECKING:
|
|
from ica_typing import IcaNewMessage, IcaClient
|
|
from ica_typing import TailchatReciveMessage, TailchatClient
|
|
else:
|
|
IcaNewMessage = TypeVar("NewMessage")
|
|
IcaClient = TypeVar("IcaClient")
|
|
TailchatReciveMessage = TypeVar("TailchatReciveMessage")
|
|
TailchatClient = TypeVar("TailchatClient")
|
|
|
|
def on_ica_message(msg: IcaNewMessage, client: IcaClient) -> None:
|
|
if not (msg.is_from_self or msg.is_reply):
|
|
if msg.content == "/bot":
|
|
reply = msg.reply_with(f"ica-async-rs({client.version})-sync-py {client.ica_version}")
|
|
client.send_message(reply)
|
|
|
|
|
|
def on_tailchat_message(msg: TailchatReciveMessage, client: TailchatClient) -> None:
|
|
# if not (msg.is_from_self or msg.is_reply):
|
|
if not (msg.is_reply):
|
|
if msg.content == "/bot":
|
|
reply = msg.reply_with(f"ica-async-rs({client.version})-sync-py {client.tailchat_version}")
|
|
client.send_message(reply)
|