* fix build: run gradlew format
* Revert "fix build: run gradlew format"
This reverts commit e679b4f26f.
* fix connector template to fix the build
14 lines
283 B
Handlebars
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:])
|