mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-02-07 21:46:10 +08:00
* 修复了style和script标签无法去除的问题 * 添加了图片展示 & 统一了引号格式 * 添加了图片展示 & 统一了引号格式 * 统一引号格式并异步处理函数 * 新增了Introduce功能 * 新增了Introduce功能并将其从Search中分离
17 lines
334 B
Python
17 lines
334 B
Python
|
|
from . import mg_Info
|
|
from . import mg_Search
|
|
from . import mg_Introduce
|
|
|
|
# meogirl
|
|
async def meogirl () :
|
|
return mg_Info.meogirl()
|
|
|
|
# Search
|
|
async def search (msg : str, num : int = 3) :
|
|
return str(await mg_Search.search(msg, num))
|
|
|
|
# Show
|
|
async def introduce (msg : str) :
|
|
return str(await mg_Introduce.introduce(msg))
|