Skip to content

Commit

Permalink
Payment Token Set as Constants (#804)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carter2565 authored Mar 6, 2025
1 parent 4117688 commit 0890463
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions discord/payments.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,14 @@
__all__ = (
'Payment',
'EntitlementPayment',
'BRAINTREE_KEY',
'STRIPE_KEY',
'ADYEN_KEY'
)

BRAINTREE_KEY = 'production_ktzp8hfp_49pp2rp4phym7387'
STRIPE_KEY = 'pk_live_CUQtlpQUF0vufWpnpUmQvcdi'
ADYEN_KEY = 'live_E3OQ33V6GVGTXOVQZEAFQJ6DJIDVG6SY'

class Payment(Hashable):
"""Represents a payment to Discord.
Expand Down

0 comments on commit 0890463

Please sign in to comment.