* Rename remaining lowcode connector manifest files to manifest.yaml * Updating validation of yaml schema as well
18 lines
468 B
Python
18 lines
468 B
Python
#
|
|
# Copyright (c) 2022 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")
|