13 lines
365 B
JavaScript
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);
|