1
0
mirror of synced 2026-01-13 09:03:08 -05:00
Files
airbyte/airbyte-integrations/connector-templates/source-python-http-api/main.py.hbs
Denis Davydov 426e9594cb fix build: run gradlew format (#13265)
* fix build: run gradlew format

* Revert "fix build: run gradlew format"

This reverts commit e679b4f26f.

* fix connector template to fix the build
2022-05-27 17:36:43 +03:00

14 lines
283 B
Handlebars

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_{{snakeCase name}} import Source{{properCase name}}
if __name__ == "__main__":
source = Source{{properCase name}}()
launch(source, sys.argv[1:])