19 lines
469 B
Python
19 lines
469 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource
|
|
|
|
|
|
"""
|
|
This file provides the necessary constructs to interpret a provided declarative YAML configuration file into
|
|
source connector.
|
|
WARNING: Do not modify this file.
|
|
"""
|
|
|
|
|
|
# Declarative Source
|
|
class SourceZenloop(YamlDeclarativeSource):
|
|
def __init__(self):
|
|
super().__init__(path_to_yaml="manifest.yaml")
|