1
0
mirror of synced 2025-12-23 21:03:15 -05:00

source-recharge: migrate to poetry (#35182)

This commit is contained in:
Augustin
2024-02-12 21:10:23 +01:00
committed by GitHub
parent a94a0707aa
commit 4fab6f48ef
8 changed files with 1123 additions and 104 deletions

View File

@@ -2,12 +2,7 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_recharge import SourceRecharge
from source_recharge.run import run
if __name__ == "__main__":
source = SourceRecharge()
launch(source, sys.argv[1:])
run()