1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/destinations/__init__.py

9 lines
213 B
Python

# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
"""The destinations module provides classes for building destination connectors."""
from .destination import Destination
__all__ = [
"Destination",
]