mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
15 lines
244 B
Python
15 lines
244 B
Python
from typing import Optional, List, Any, Union, Dict
|
|
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]
|