mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-10-21 16:27:15 +08:00
12 lines
229 B
Python
12 lines
229 B
Python
from pydantic import BaseModel
|
|
from nonebot import get_driver
|
|
from typing import List
|
|
|
|
|
|
|
|
class PluginConfig(BaseModel):
|
|
enable_group: List[int] = []
|
|
|
|
|
|
config: PluginConfig = PluginConfig.parse_obj(get_driver().config.dict())
|