1
0
mirror of synced 2026-01-02 12:02:47 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-sheets/main.py
Serhii Chvaliuk a431a52aaa Source Google Sheets: slugify column names (#23057)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
2023-02-23 18:10:46 +02:00

14 lines
264 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_google_sheets import SourceGoogleSheets
if __name__ == "__main__":
source = SourceGoogleSheets()
launch(source, sys.argv[1:])