constructor()

in src/BootAppManager.ts [35:42]


    constructor() {
        //We have to do something with the errors here because constructor cannot
        // be declared as `async`.
        this._startAppListSynchronisation()
            .catch((error) => {
                console.error(error);
            });
    }