airbyte-custom-connector/source-discord-fetcher/source_discord_fetcher/run.py

14 lines
239 B
Python

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