1
0
mirror of synced 2026-02-01 22:01:57 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sources/streams/__init__.py
Alexandre Girard 25fc396cdf CDK: ThreadBasedConcurrentStream skeleton and top-level AbstractStream (#30111)
Co-authored-by: girarda <girarda@users.noreply.github.com>
Co-authored-by: Maxime Carbonneau-Leclerc <maxi297@users.noreply.github.com>
Co-authored-by: Catherine Noll <clnoll@users.noreply.github.com>
2023-10-11 16:46:02 -07:00

9 lines
176 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
# Initialize Streams Package
from .core import IncrementalMixin, Stream
__all__ = ["IncrementalMixin", "Stream"]