Erminig/erminig/controllers/evezh/abstract.py

15 lines
270 B
Python
Raw Normal View History

2025-04-29 17:15:19 +02:00
from abc import ABC, abstractmethod
class UpstreamSource(ABC):
MAX_RETRIES = 2
RETRY_DELAY = 2 # secondes
def __init__(self, name, config):
self.name = name
self.config = config
@abstractmethod
def get_latest(self):
pass