Odoo18-Base/addons/web/static/src/main.js
2025-03-10 10:52:11 +07:00

13 lines
365 B
JavaScript

/** @odoo-module **/
import { startWebClient } from "./start";
import { WebClient } from "./webclient/webclient";
/**
* This file starts the webclient. It is in its own file to allow its replacement
* in enterprise. The enterprise version of the file uses its own webclient import,
* which is a subclass of the above Webclient.
*/
startWebClient(WebClient);