Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/mcv/__init__.py
多羅狼 66957c524b
.
2023-11-29 20:46:01 +08:00

54 lines
No EOL
1.2 KiB
Python

from core.builtins import Bot
from core.component import module
from .mcv import mcv, mcbv, mcdv, mcev, mclgv
m = module(
bind_prefix='mcv',
alias='m',
developers=['OasisAkari', 'Dianliang233'],
recommend_modules=['mcbv', 'mcdv'])
@m.handle('{{mcv.help.mcv}}')
async def mcv_loader(msg: Bot.MessageSession):
await msg.finish(await mcv(msg))
mb = module(
bind_prefix='mcbv',
developers=['OasisAkari', 'Dianliang233'])
@mb.handle('{{mcv.help.mcbv}}')
async def mcbv_loader(msg: Bot.MessageSession):
await msg.finish(await mcbv(msg))
md = module(
bind_prefix='mcdv',
developers=['OasisAkari', 'Dianliang233'])
@md.handle('{{mcv.help.mcdv}}')
async def mcdv_loader(msg: Bot.MessageSession):
await msg.finish(await mcdv(msg))
me = module(
bind_prefix='mcev',
developers=['OasisAkari', 'Dianliang233'])
@me.handle('{{mcv.help.mcev}}')
async def mcev_loader(msg: Bot.MessageSession):
await msg.finish(await mcev(msg))
mlg = module(
bind_prefix='mclgv',
developers=['OasisAkari', 'Dianliang233'])
@mlg.handle('{{mcv.help.mclgv}}')
async def mclgv_loader(msg: Bot.MessageSession):
await msg.finish(await mclgv(msg))