12 lines
253 B
Python
12 lines
253 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from destination_scaffold_destination_python import DestinationScaffoldDestinationPython
|
|
|
|
if __name__ == "__main__":
|
|
DestinationScaffoldDestinationPython().run(sys.argv[1:])
|