1
0
mirror of synced 2025-12-21 02:51:29 -05:00
Files
airbyte/airbyte-integrations/connectors/source-recharge/source_recharge/run.py
2024-02-12 14:10:23 -06:00

15 lines
236 B
Python

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