重构 meogirl 模块,统一导入命名并添加类型忽略注释

This commit is contained in:
2024-12-13 02:49:24 +08:00
parent 5797381824
commit 8f5b05c51a
3 changed files with 10 additions and 10 deletions

View File

@ -1,16 +1,16 @@
from . import mg_Info, mg_Introduce, mg_Search
from . import mg_info, mg_introduce, mg_search
# meogirl
async def meogirl():
return mg_Info.meogirl()
return mg_info.meogirl()
# Search
async def search(msg: str, num: int = 3):
return str(await mg_Search.search(msg, num))
return str(await mg_search.search(msg, num))
# Show
async def introduce(msg: str):
return str(await mg_Introduce.introduce(msg))
return str(await mg_introduce.introduce(msg))