芜湖起飞

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

24
bot.py Normal file
View file

@ -0,0 +1,24 @@
from pepperbot import PepperBot
from pepperbot.store.meta import BotRoute
from apps.wuhu_takeoff import WuHuTakeoff
bot = PepperBot(port=5800)
bot.register_adapter(
bot_protocol="onebot",
receive_protocol="websocket",
backend_protocol="http",
backend_host="127.0.0.1",
backend_port=5700,
)
bot.apply_routes(
[
BotRoute(
groups="*",
friends=None,
handlers=[WuHuTakeoff],
),
]
)