1
0
mirror of synced 2026-01-19 18:07:00 -05:00
Files
airbyte/airbyte-integrations/connectors/source-intercom/source_intercom/run.py
2024-01-30 03:22:13 -06:00

15 lines
236 B
Python

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