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