1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/airbyte-integrations/connectors/source-faker/source_faker/run.py

19 lines
266 B
Python

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