airbyte-custom-connector/source-discourse-fetcher/source_discourse_fetcher/run.py

14 lines
243 B
Python

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