* feat: Add support for sendgrid and logger notification providers * fix: changes based on PR review
11 lines
255 B
TypeScript
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
|