()
| 18 | } |
| 19 | |
| 20 | private async initialize() { |
| 21 | if (!this.stripe && process.env.STRIPE_SECRET_KEY) { |
| 22 | this.stripe = new Stripe(process.env.STRIPE_SECRET_KEY) |
| 23 | } |
| 24 | this.cacheManager = await UsageCacheManager.getInstance() |
| 25 | } |
| 26 | |
| 27 | public getStripe() { |
| 28 | if (!this.stripe) throw new Error('Stripe is not initialized') |
no test coverage detected