mirror of
https://github.com/status-im/airbyte-custom-connector.git
synced 2025-02-20 12:48:48 +00:00
14 lines
239 B
Python
14 lines
239 B
Python
#
|
|
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from .source import SourceCustomBambooHr
|
|
|
|
def run():
|
|
source = SourceCustomBambooHr()
|
|
launch(source, sys.argv[1:])
|