mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-02-01 02:51:25 +08:00
17 lines
301 B
Python
Executable File
17 lines
301 B
Python
Executable File
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))
|