UNPKG

@unchainedshop/plugins

Version:

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

14 lines (13 loc) 568 B
import {} from '@unchainedshop/core'; import { UpdateCoinbaseRates, configureUpdateCoinbaseRatesAutoscheduling } from "./adapter.js"; export const UpdateCoinbaseRatesPlugin = { key: 'shop.unchained.worker.update-coinbase-rates', label: 'Update Coinbase Rates Worker Plugin', version: '1.0.0', adapters: [UpdateCoinbaseRates], onRegister: () => { configureUpdateCoinbaseRatesAutoscheduling(); }, }; export default UpdateCoinbaseRatesPlugin; export { UpdateCoinbaseRates, configureUpdateCoinbaseRatesAutoscheduling } from "./adapter.js";