芜湖起飞

This commit is contained in:
zhbaor 2023-08-13 18:31:28 +08:00
commit 2b9afaa260
11 changed files with 239 additions and 0 deletions

0
apps/__init__.py Normal file
View file

View file

@ -0,0 +1,7 @@
from pepperbot.core.message.chain import MessageChain, Text
class RIICReportAnalysis:
async def group_message(self, chain: MessageChain):
if chain.pure_text == "芜湖":
await chain.onebot_reply(Text("起飞"))

7
apps/wuhu_takeoff.py Normal file
View file

@ -0,0 +1,7 @@
from pepperbot.core.message.chain import MessageChain, Text
class WuHuTakeoff:
async def group_message(self, chain: MessageChain):
if chain.pure_text == "芜湖":
await chain.onebot_reply(Text("起飞"))