* Initial commit - All test passed * add stream fax cover * refactor docs * fix schema, Added pagination * Add several streams, fix schema * fix schema, add streams, refactor docs * EOF * Resolve conflicts * Resolve conflicts * add metadata file --------- Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
14 lines
260 B
Python
14 lines
260 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from source_ringcentral import SourceRingcentral
|
|
|
|
if __name__ == "__main__":
|
|
source = SourceRingcentral()
|
|
launch(source, sys.argv[1:])
|