airbyte-custom-connector/source-bank-balance-fetcher/source_bank_balance_fetcher/run.py

14 lines
247 B
Python
Raw Normal View History

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