1
0
mirror of synced 2025-12-30 21:02:43 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sources/__init__.py
Eugene Kulak d50ae47b49 🐛 CDK: Fix the logging of unhandled exceptions to show stacktrace (#8704)
* print stacktrace for unhandled exceptions

Co-authored-by: Eugene Kulak <kulak.eugene@gmail.com>
2021-12-14 00:04:29 +02:00

10 lines
218 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
from .abstract_source import AbstractSource
from .config import BaseConfig
from .source import Source
__all__ = ["AbstractSource", "BaseConfig", "Source"]