UNPKG

@unchainedshop/plugins

Version:

Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters

14 lines (13 loc) 492 B
import {} from '@unchainedshop/core'; import { ErrorNotifications, configureErrorNotificationsAutoscheduling } from "./adapter.js"; export const ErrorNotificationsPlugin = { key: 'shop.unchained.worker.error-notifications', label: 'Error Notifications Worker Plugin', version: '1.0.0', adapters: [ErrorNotifications], onRegister: () => { configureErrorNotificationsAutoscheduling(); }, }; export default ErrorNotificationsPlugin; export * from "./adapter.js";