1
0
mirror of synced 2026-01-04 18:04:31 -05:00
Files
airbyte/airbyte-integrations/connectors/destination-scaffold-destination-python/main.py
Cole Snodgrass 2e099acc52 update headers from 2022 -> 2023 (#22594)
* It's 2023!

* 2022 -> 2023

---------

Co-authored-by: evantahler <evan@airbyte.io>
2023-02-08 13:01:16 -08:00

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:])