zhenxun_bot/zhenxun/builtin_plugins/help/_config.py
2024-02-25 03:18:34 +08:00

14 lines
192 B
Python

from pydantic import BaseModel
class Item(BaseModel):
plugin_name: str
sta: int
class PluginList(BaseModel):
plugin_type: str
icon: str
logo: str
items: list[Item]