1
0
mirror of synced 2025-12-21 11:01:41 -05:00
Files
airbyte/airbyte-integrations/connectors/source-okta/source_okta/run.py
Dhroov Makwana cd93561974 Source Okta: migrate to low-code (#36509)
Co-authored-by: Alexandre Girard <alexandre@airbyte.io>
Co-authored-by: Anatolii Yatsuk <tolikyatsuk@gmail.com>
2024-05-22 14:55:52 +03:00

18 lines
325 B
Python

#
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from .config_migration import OktaConfigMigration
from .source import SourceOkta
def run():
source = SourceOkta()
OktaConfigMigration.migrate(sys.argv[1:], source)
launch(source, sys.argv[1:])