access management and telemetrics #12

This commit is contained in:
2026-01-24 11:35:09 +02:00
parent e413418f9f
commit 0c63c5fb1a
5 changed files with 171 additions and 2 deletions
+9
View File
@@ -72,6 +72,15 @@ class App{
if(p.start) await p.start(this);
}
}
async stop(){
for (let p of this.plugins){
if(p.stop) {
console.debug('Stopping', p.name)
await p.stop(this);
}
}
}
}