10 lines
170 B
Python
10 lines
170 B
Python
from nonebot.plugin import get_plugin_config
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Config(BaseModel):
|
|
watch_ids: list[str] = []
|
|
|
|
|
|
config = get_plugin_config(Config)
|