mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-02-07 21:46:10 +08:00
10 lines
221 B
Python
10 lines
221 B
Python
|
from nonebot import get_plugin_config, logger
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class ConfigModel(BaseModel):
|
||
|
marshoai_plugin_memory_scheduler: bool = True
|
||
|
|
||
|
|
||
|
plugin_config: ConfigModel = get_plugin_config(ConfigModel)
|