1
0
mirror of synced 2026-01-18 15:02:51 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/__init__.py
2024-04-30 10:18:00 -07:00

12 lines
339 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
from .connector import AirbyteSpec, Connector
from .entrypoint import AirbyteEntrypoint
from .logger import AirbyteLogger
from importlib import metadata
__all__ = ["AirbyteEntrypoint", "AirbyteLogger", "AirbyteSpec", "Connector"]
__version__ = metadata.version("airbyte_cdk")