Патч
All checks were successful
Build And Push / publish (push) Successful in 1m11s

This commit is contained in:
2025-10-19 19:58:48 +03:00
parent 265d4b31aa
commit 6523a65dd5
7 changed files with 163 additions and 39 deletions

View File

@ -1,6 +1,7 @@
from .aemd.api import AEMD_API
from .esia.api import ESIA_API
from .tdn.api import TDN_API
from .tmk.api import TMK_API
from .vitacore.api import VITACORE_API
@ -8,6 +9,7 @@ class ClientsObject:
_esia_api = None
_vitacore_api = None
_tdn_api = None
_tmk_api = None
_aemd_api = None
@property
@ -31,6 +33,13 @@ class ClientsObject:
return self._tdn_api
@property
def tmk_api(self):
if not self._tmk_api:
self._tmk_api = TMK_API()
return self._tmk_api
@property
def aemd_api(self):
if not self._aemd_api: