stripe integration

This commit is contained in:
Steve Androulakis
2025-01-04 12:48:34 -08:00
parent c353090e52
commit 1f84fc37ea
7 changed files with 271 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
from tools.create_invoice import create_invoice
if __name__ == "__main__":
# Example usage:
args_create = {
"email": "jenny.rosen@example.com",
"amount": 150.00,
"description": "Flight to Seattle",
"days_until_due": 7,
}
invoice_details = create_invoice(args_create)
print(invoice_details)