summaryrefslogtreecommitdiff
path: root/addons/point_of_sale/static/src/js/Registries.js
blob: e95817ab12936ba09ad583e45b4e5710feb07608 (plain)
1
2
3
4
5
6
7
8
9
10
11
odoo.define('point_of_sale.Registries', function(require) {
    'use strict';

    /**
     * This definition contains all the instances of ClassRegistry.
     */

    const ComponentRegistry = require('point_of_sale.ComponentRegistry');

    return { Component: new ComponentRegistry() };
});