1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/airbyte-integrations/template/python-source/main_dev.py
2020-10-16 10:56:08 -07:00

10 lines
213 B
Python

import sys
from airbyte_protocol.entrypoint import launch
from template_python_source import TemplatePythonSource
if __name__ == "__main__":
source = TemplatePythonSource()
launch(source, sys.argv[1:])