更新 mypy 版本至 1.13.0,重构 marshoai-megakits 模块并添加随机数和计算功能

This commit is contained in:
2024-12-13 02:40:55 +08:00
parent 8defcfdd66
commit 5797381824
25 changed files with 101 additions and 80 deletions

View File

@ -0,0 +1,16 @@
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))