Files
medusa-store/packages/modules/providers/notification-sendgrid/src/index.ts
2024-09-26 11:14:35 +05:30

11 lines
274 B
TypeScript

import { ModuleProviderExports } from "@medusajs/framework/types"
import { SendgridNotificationService } from "./services/sendgrid"
const services = [SendgridNotificationService]
const providerExport: ModuleProviderExports = {
services,
}
export default providerExport