You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iTi-Flask/iti/service_client/__init__.py

26 lines
642 B
Python

from .client import ServiceClient
from .config import RetryConfig, ServiceConfig, TimeoutConfig
from .errors import (
ServiceClientError,
ServiceBusinessError,
ServiceConfigError,
ServiceHTTPError,
ServiceUnavailableError,
)
from .registry import init_service_clients, register_service_client, service_client
__all__ = [
"RetryConfig",
"ServiceClient",
"ServiceBusinessError",
"ServiceClientError",
"ServiceConfig",
"ServiceConfigError",
"ServiceHTTPError",
"ServiceUnavailableError",
"TimeoutConfig",
"init_service_clients",
"register_service_client",
"service_client",
]