airbyte-custom-connector/source-basic-api-fetcher/source_basic_api_fetcher/run.py

14 lines
241 B
Python

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