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