1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
devin-ai-integration[bot] b3580344b7 🎉 New Source: box-data-extract (copy of #53682) (#56432)
Co-authored-by: Barduino <barduinor@gmail.com>
Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
2025-03-27 11:17:14 -03:00

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