8 lines
185 B
Python
8 lines
185 B
Python
"""
|
|
Integrations services package
|
|
"""
|
|
from .his_adapter import HISAdapter
|
|
from .his_client import HISClient, HISClientFactory
|
|
|
|
__all__ = ['HISAdapter', 'HISClient', 'HISClientFactory']
|