Convert module-start to async (#3049)

Similar to the node_helper async start PR...

---------

Co-authored-by: veeck <michael@veeck.de>
This commit is contained in:
Veeck 2023-02-22 18:58:29 +01:00 committed by GitHub
parent fe0b915a5d
commit 498b440174
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 34 additions and 19 deletions

View file

@ -40,7 +40,7 @@ const Module = Class.extend({
/**
* Called when the module is started.
*/
start: function () {
start: async function () {
Log.info("Starting module: " + this.name);
},