Stripe

Stripe payment integration

Register the service into your main.go file:

registry.ServiceProviderStripe(),
1

Access the service:

service.DI().Stripe()
1

Config sample:

stripe:
  key: "api_key"
  webhook_secrets: # map of your webhook secrets
    checkout: "key"
1
2
3
4