14 lines
286 B
Python
Executable File
14 lines
286 B
Python
Executable File
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from source_google_search_console import SourceGoogleSearchConsole
|
|
|
|
if __name__ == "__main__":
|
|
source = SourceGoogleSearchConsole()
|
|
launch(source, sys.argv[1:])
|