Files
File: src/main/java/com/paymentlink/config/StripeConfig.java
| 1 | package com.paymentlink.config; |
| 2 | |
| 3 | import com.stripe.Stripe; |
| 4 | import jakarta.annotation.PostConstruct; |
| 5 | import org.springframework.beans.factory.annotation.Value; |
| 6 | import org.springframework.context.annotation.Configuration; |
| 7 | |
| 8 | |
| 9 | public class StripeConfig { |
| 10 | |
| 11 | |
| 12 | private String secretKey; |
| 13 | |
| 14 | |
| 15 | public void init() { |
| 16 | Stripe.apiKey = secretKey; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 |