1
0
mirror of synced 2026-01-09 15:05:02 -05:00
Files
airbyte/airbyte-cdk/python/unit_tests/sources/declarative/external_component.py
Brian Lai 8f21d0de1b Allow for custom requesters to be defined in low-code manifests (#21001)
* Allow for custom requesters to be defined in low-code manifests

* add test for custom requester component

* bump versions and changelog
2023-01-06 20:17:51 -05:00

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