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():
return mg_info.meogirl()
2024-12-11 00:12:22 +08:00
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))