25 lines
493 B
TypeScript
25 lines
493 B
TypeScript
import { ModuleProviderExports } from "@medusajs/types"
|
|
import {
|
|
StripeBancontactService,
|
|
StripeBlikService,
|
|
StripeGiropayService,
|
|
StripeIdealService,
|
|
StripeProviderService,
|
|
StripePrzelewy24Service,
|
|
} from "./services"
|
|
|
|
const services = [
|
|
StripeBancontactService,
|
|
StripeBlikService,
|
|
StripeGiropayService,
|
|
StripeIdealService,
|
|
StripeProviderService,
|
|
StripePrzelewy24Service,
|
|
]
|
|
|
|
const providerExport: ModuleProviderExports = {
|
|
services,
|
|
}
|
|
|
|
export default providerExport
|