Files
GibSend/packages/python-sdk/usesend/__init__.py
T
2025-10-18 10:31:43 +11:00

9 lines
279 B
Python

"""Python client for the UseSend API."""
from .usesend import UseSend, UseSendHTTPError
from .domains import Domains # type: ignore
from .campaigns import Campaigns # type: ignore
from . import types
__all__ = ["UseSend", "UseSendHTTPError", "types", "Domains", "Campaigns"]