1
0
mirror of synced 2026-01-25 19:02:00 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-sheets/source_google_sheets/run.py

16 lines
237 B
Python

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