17 lines
301 B
Python
Raw Normal View History

from . import mg_Info, mg_Introduce, mg_Search
2024-12-11 00:12:22 +08:00
# meogirl
async def meogirl():
2024-12-11 00:12:22 +08:00
return mg_Info.meogirl()
2024-12-11 00:12:22 +08:00
# 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))