-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (22 loc) · 1001 Bytes
/
__init__.py
File metadata and controls
26 lines (22 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# flake8: noqa
if __import__("typing").TYPE_CHECKING:
# import apis into api package
from regula.documentreader.webclient.gen.api.healthcheck_api import HealthcheckApi
from regula.documentreader.webclient.gen.api.process_api import ProcessApi
from regula.documentreader.webclient.gen.api.resources_api import ResourcesApi
from regula.documentreader.webclient.gen.api.transaction_api import TransactionApi
else:
from lazy_imports import LazyModule, as_package, load
load(
LazyModule(
*as_package(__file__),
"""# import apis into api package
from regula.documentreader.webclient.gen.api.healthcheck_api import HealthcheckApi
from regula.documentreader.webclient.gen.api.process_api import ProcessApi
from regula.documentreader.webclient.gen.api.resources_api import ResourcesApi
from regula.documentreader.webclient.gen.api.transaction_api import TransactionApi
""",
name=__name__,
doc=__doc__,
)
)