Changed the Folder Structure for better maintainability

This commit is contained in:
MikeHughes-BIN
2025-11-13 17:34:22 +01:00
parent c021272ca4
commit 9254ddc57f
6 changed files with 0 additions and 0 deletions
@@ -0,0 +1,10 @@
module.exports = {
name:"example", // Unique name for our function that will later be used to get the function from the map via "mapFunctions.get("example").function()"
type:"example-type", // value used to differentiate each module to order them in the UI
displayname:"Example", // The displayname used within the UI
async function(randomParameter){
// Here we put a simple console.log to show how the system works
// This function will be called from the @startup.js function in the utility folder
console.log(`\n------------\nThis is the example function called by the ${randomParameter} function\n------------\n`);
}
}