airbyte-custom-connector/source-social-network-fetcher/source_social_network_fetcher/run.py

14 lines
251 B
Python

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