1
0
mirror of synced 2025-12-25 02:09:19 -05:00

airbyte-lib: Refactor connectors (#34552)

This commit is contained in:
Joe Reuter
2024-01-30 10:22:13 +01:00
committed by GitHub
parent d1334beb2e
commit f29234a2db
755 changed files with 7678 additions and 1984 deletions

View File

@@ -0,0 +1,14 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_looker import SourceLooker
def run():
source = SourceLooker()
launch(source, sys.argv[1:])