Files
AstrBot/astrbot/core/pipeline/context.py
2025-03-03 13:30:55 +08:00

10 lines
243 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