1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Python sources refactoring (#592)

This commit is contained in:
Michel Tricot
2020-10-16 10:56:08 -07:00
committed by GitHub
parent bd696014d5
commit bc56f02c41
65 changed files with 608 additions and 281 deletions

View File

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