1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/airbyte-integrations/singer/stripe_abprotocol/source/main_dev.py
2020-10-16 10:56:08 -07:00

9 lines
206 B
Python

import sys
from airbyte_protocol.entrypoint import launch
from source_stripe_singer import SourceStripeSinger
if __name__ == "__main__":
source = SourceStripeSinger()
launch(source, sys.argv[1:])