初始化插件
(self, config: Optional[StegaPyConfig] = None)
| 34 | """StegaPy插件基类""" |
| 35 | |
| 36 | def __init__(self, config: Optional[StegaPyConfig] = None): |
| 37 | """初始化插件""" |
| 38 | self.config = config or self.create_config() |
| 39 | |
| 40 | def get_name(self) -> str: |
| 41 | """获取插件名称""" |
nothing calls this directly
no test coverage detected