1
0
mirror of synced 2025-12-22 11:31:02 -05:00
Files
airbyte/airbyte-integrations/connectors/source-commercetools/source_commercetools/run.py
2024-12-18 14:05:43 -08:00

16 lines
252 B
Python

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