Files
nonebot-plugin-watch/nonebot_plugin_watch/config.py
2024-10-18 23:44:47 +08:00

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)