Files
AstrBot/astrbot/core/pipeline/context.py
2024-12-09 22:38:42 +08:00

8 lines
241 B
Python

from dataclasses import dataclass
from astrbot.core.config.astrbot_config import AstrBotConfig
from astrbot.core.star import PluginManager
@dataclass
class PipelineContext:
astrbot_config: AstrBotConfig
plugin_manager: PluginManager