* Allow for custom requesters to be defined in low-code manifests * add test for custom requester component * bump versions and changelog
14 lines
293 B
Python
14 lines
293 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
from airbyte_cdk.sources.declarative.requesters import HttpRequester
|
|
|
|
|
|
class SampleCustomComponent(HttpRequester):
|
|
"""
|
|
A test class used to validate manifests that rely on custom defined Python components
|
|
"""
|
|
|
|
pass
|