11 lines
249 B
Python
11 lines
249 B
Python
"""
|
|
DBIS IRU Python SDK
|
|
Client library for IRU integration
|
|
"""
|
|
|
|
from .client import IRUClient
|
|
from .types import IRUOffering, IRUInquiry, IRUSubscription
|
|
|
|
__version__ = "1.0.0"
|
|
__all__ = ["IRUClient", "IRUOffering", "IRUInquiry", "IRUSubscription"]
|