1
0
mirror of synced 2026-01-07 18:06:03 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pendo/main.py
Sajarin f1b7253301 CI checks for #24081 (#24714)
* 🎉 New Source: Pendo [Configuration Based Source]

- add 4 full import streams to bootstrap the new source connector
- add documentation
- add svg
- generate uuid and add a record in source_definitions.yaml
- issue: https://github.com/airbytehq/airbyte/issues/2977

* address feedback: 1) correct schema; 2) add invalid_config and sample_config

* correct the sample_config.json

* auto-bump connector version

---------

Co-authored-by: Yiyang Li <yiyangli2010@gmail.com>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-03-31 16:25:24 -03:00

14 lines
242 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_pendo import SourcePendo
if __name__ == "__main__":
source = SourcePendo()
launch(source, sys.argv[1:])