Files
medusa-store/packages/modules/providers/notification-sendgrid/src/index.ts
Stevche Radevski 79758c46b6 feat: Add support for sendgrid and logger notification providers (#7290)
* feat: Add support for sendgrid and logger notification providers

* fix: changes based on PR review
2024-05-11 17:40:03 +02:00

11 lines
264 B
TypeScript

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