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