From 398799de0c1826c3544eb6eec681fa48096932a0 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Fri, 1 Sep 2023 19:31:47 +0300 Subject: Refactor --- app/PluginInterface.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/PluginInterface.py (limited to 'app/PluginInterface.py') diff --git a/app/PluginInterface.py b/app/PluginInterface.py new file mode 100644 index 0000000..6194436 --- /dev/null +++ b/app/PluginInterface.py @@ -0,0 +1,18 @@ +from abc import ABC, abstractmethod +from typing import Any + +from app.Item import Item + + +class PluginInterface(ABC): + def __init__(self, id: str, params: dict[str, Any]): + self.id = id + self.params = params + + @abstractmethod + def validate_input_n(self, n: int) -> bool: + raise NotImplemented("abstract method not implemented") + + @abstractmethod + def process(self, inputs: list[list[Item]]) -> list[Item]: + pass -- cgit v1.3