1
0
mirror of synced 2025-12-21 19:11:14 -05:00
Files
airbyte/airbyte-integrations/connectors/source-appsflyer/source_appsflyer/run.py
2024-01-30 03:22:13 -06:00

15 lines
239 B
Python

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