Alexis Pentori e0df9e7309
custom bamboo hr: init connector
Signed-off-by: Alexis Pentori <alexis@status.im>
2024-08-13 17:50:09 +02:00

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:])