Implemented the general modular framework.

Added basic modules for the trascription tool Assembly and the Documentation tool ChatGPT
This commit is contained in:
2025-11-03 17:48:29 +01:00
parent 749e44f322
commit b5fe3f3b0c
12 changed files with 942 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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")
}
}