Initial Comit

The Server has overcome it's early Development Steps.
although it still is a bit unstable it works in it's actual state
This commit is contained in:
2019-09-25 23:53:02 +02:00
parent e22d956c60
commit d22fdadc50
11 changed files with 450 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/**
* @param {array} events Die Events die Ausgeführt werden
*/
function listener(events, event){
events.forEach(e => {
if(event === e.name) {
e.function();
}
})
}
module.exports = listener;