Files
Node.js-Project-Base/modules/utility/@startup.js
T
2021-10-28 19:53:19 +02:00

9 lines
278 B
JavaScript

module.exports = {
name:"Startup_function",
async function(){
// Put any code here that you want to be executed on startup
// We are now calling the example function from the example folder
mapFunctions.get("example").function("Startup")
}
}