mirror of
https://github.com/status-im/airbyte-custom-connector.git
synced 2026-08-31 02:21:15 +00:00
9 lines
190 B
Python
9 lines
190 B
Python
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from .source import SourceGithubMarkdownFetcher
|
|
|
|
def run():
|
|
source = SourceGithubMarkdownFetcher()
|
|
launch(source, sys.argv[1:])
|