collector/plugins/plugin.py

11 lines
163 B
Python
Raw Normal View History

2020-04-14 22:49:22 +00:00
from abc import ABC, abstractmethod
from typing import Tuple
class Plugin(ABC):
models = []
@abstractmethod
def execute(self) -> None:
pass