airbyte-custom-connector/source-simplecast-fecther/source_simplecast_fecther/run.py

14 lines
245 B
Python

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