1
0
mirror of synced 2026-01-17 21:02:47 -05:00
Files
2024-01-30 03:22:13 -06:00

15 lines
267 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_microsoft_dataverse import SourceMicrosoftDataverse
def run():
source = SourceMicrosoftDataverse()
launch(source, sys.argv[1:])