Co-authored-by: Barduino <barduinor@gmail.com> Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
16 lines
241 B
Python
16 lines
241 B
Python
#
|
|
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
|
|
from .source import SourceBoxDataExtract
|
|
|
|
|
|
def run():
|
|
source = SourceBoxDataExtract()
|
|
launch(source, sys.argv[1:])
|