import BbkAddToCartController from './bbk-add-to-cart-controller' import BbkCartController from './bbk-cart-controller' // Registers the checkout module's Stimulus controllers onto the host app's // Stimulus application. Call once from the host's JS entry point: // // import { registerCheckout } from './checkout' // registerCheckout(application) // // When this module moves to boboko-core this file ships with it unchanged; // only that one import line in the host entry point differs per project. export function registerCheckout(application) { application.register('bbk-add-to-cart', BbkAddToCartController) application.register('bbk-cart', BbkCartController) }