1
0
mirror of synced 2026-01-13 18:02:36 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sql/shared/__init__.py
Aaron ("AJ") Steers 8d6a7aa220 Python-CDK: Add CDK sql module for new MotherDuck destination (#47260)
Co-authored-by: Guen Prawiroatmodjo <guen@motherduck.com>
2024-10-22 22:09:08 -07:00

16 lines
334 B
Python

# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
"""Module for future CDK components.
Components here are planned to move to the CDK.
TODO!: Add GitHub link here before merging.
"""
from __future__ import annotations
from airbyte_cdk.sql.shared.sql_processor import SqlProcessorBase
__all__ = [
"SqlProcessorBase",
]