mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-26 18:12:47 +08:00
17 lines
301 B
Python
17 lines
301 B
Python
from . import mg_Info, mg_Introduce, mg_Search
|
|
|
|
|
|
# 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))
|