16 lines
231 B
Python
16 lines
231 B
Python
#
|
|
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
|
|
from .source import SourceCouchbase
|
|
|
|
|
|
def run():
|
|
source = SourceCouchbase()
|
|
launch(source, sys.argv[1:])
|