Refactored some names again

This commit is contained in:
Andrei Bondarenko 2021-08-12 11:11:59 +02:00
parent b9526c64ee
commit 4c802a6a03
4 changed files with 1 additions and 1 deletions

7
services/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