Files
medusa-store/packages/modules/providers/notification-local/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
255 B
TypeScript

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