UNPKG

@vbusatta/adonis-stripe

Version:

Provider for AdonisJS 6. Simplifies Stripe integration with webhooks and services.

11 lines (10 loc) 257 B
import app from '@adonisjs/core/services/app'; let stripe; /** * Returns a singleton instance of the stripe service * from the container */ await app.booted(async () => { stripe = await app.container.make('stripe'); }); export { stripe as default };