11 lines
163 B
Python
11 lines
163 B
Python
|
from abc import ABC, abstractmethod
|
||
|
from typing import Tuple
|
||
|
|
||
|
|
||
|
class Plugin(ABC):
|
||
|
models = []
|
||
|
|
||
|
@abstractmethod
|
||
|
def execute(self) -> None:
|
||
|
pass
|