Added SheerkaComparisonManager

This commit is contained in:
2020-05-17 20:19:26 +02:00
parent 56e0a9d338
commit 08e3086820
29 changed files with 586 additions and 148 deletions
@@ -0,0 +1,14 @@
from dataclasses import dataclass
@dataclass
class ServiceObj:
event_id: str # event where the object is created / modified
class BaseService:
"""
Base class for services
"""
def __init__(self, sheerka):
self.sheerka = sheerka