blob: c476d59d3d63b40ab885ce2ae65bb48820d92a75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from nonebot import on_command, CommandSession
@on_command('阿这')
async def _(session: CommandSession):
await session.send('阿这')
@on_command('喵', aliases=['喵喵', '喵喵喵'])
async def _(session: CommandSession):
await session.send('喵~')
@on_command('奶宝', aliases=['@๑ ^ ₃•๑', '奶够翘'])
async def _(session: CommandSession):
await session.send('别叫了别叫了,8在')
|