@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
14 lines (13 loc) • 518 B
JavaScript
import {} from '@unchainedshop/core';
import { UpdateECBRates, configureUpdateECBRatesAutoscheduling } from "./adapter.js";
export const UpdateECBRatesPlugin = {
key: 'shop.unchained.worker.update-ecb-rates',
label: 'Update ECB Rates Worker Plugin',
version: '1.0.0',
adapters: [UpdateECBRates],
onRegister: () => {
configureUpdateECBRatesAutoscheduling();
},
};
export default UpdateECBRatesPlugin;
export { UpdateECBRates, configureUpdateECBRatesAutoscheduling } from "./adapter.js";