python-reflexion/02-plugins/base.py
2025-10-21 20:38:10 +02:00

7 lines
141 B
Python

from abc import ABC, abstractmethod
class Plugin(ABC):
@abstractmethod
def hook(self) -> None:
raise NotImplementedError()