1
0
mirror of synced 2025-12-20 10:32:35 -05:00
Files
airbyte/airbyte-integrations/connectors/source-iterable/source_iterable/run.py
2024-01-16 10:57:54 +01:00

15 lines
236 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_iterable import SourceIterable
def run():
source = SourceIterable()
launch(source, sys.argv[1:])