mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-02-08 00:56:10 +08:00
11 lines
210 B
Python
11 lines
210 B
Python
from . import mg_Info
|
|
from . import 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))
|