mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
8 lines
241 B
Python
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 |