@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
11 lines (10 loc) • 353 B
JavaScript
import {} from '@unchainedshop/core';
import { OrderDelivery } from "./adapter.js";
export const OrderDeliveryPlugin = {
key: 'shop.unchained.pricing.order-delivery',
label: 'Order Delivery Pricing Plugin',
version: '1.0.0',
adapters: [OrderDelivery],
};
export default OrderDeliveryPlugin;
export { OrderDelivery } from "./adapter.js";