Implemented LTM_bottom^(0)
This commit is contained in:
parent
633aa84f39
commit
2264a8b02d
4 changed files with 88 additions and 0 deletions
7
service/base.py
Normal file
7
service/base.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue