Implemented LTM_bottom^(0)

This commit is contained in:
Andrei Bondarenko 2021-08-11 23:03:58 +02:00
parent 633aa84f39
commit 2264a8b02d
4 changed files with 88 additions and 0 deletions

7
service/base.py Normal file
View file

@ -0,0 +1,7 @@
from abc import ABC, abstractmethod
from uuid import UUID
class Service(ABC):
def __init__(self, model: UUID):
self.model = model