* change license in generator base files * run gradlew scaffold * format eof * add eof singer base * remove license from test_* http source * format test_incremental http source
14 lines
283 B
Handlebars
14 lines
283 B
Handlebars
#
|
|
# Copyright (c) 2021 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:])
|