* add streams
* lint
* add changelog
* add doc
* clean
* lint
* fix comments
* fix schema
* fix schema
* fix comments
* fix comments
* fix doc
* initial commit
* add streams
* fix tests
* add doc
* lint
* lint
* lint
* add laucnhdarkly to source def
* Revert "add laucnhdarkly to source def"
This reverts commit 0039166bde.
* add k6 cloud to source def
* add k6 cloud to source spec
Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
19 lines
485 B
Python
19 lines
485 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 SourceLaunchdarkly(YamlDeclarativeSource):
|
|
def __init__(self):
|
|
super().__init__(**{"path_to_yaml": "launchdarkly.yaml"})
|