move most of the logic of IOSocketController into a dedicated class

This commit is contained in:
arp
2020-10-15 17:25:16 +02:00
parent 1abae077a3
commit e6bd655527
7 changed files with 713 additions and 735 deletions
+2 -2
View File
@@ -24,8 +24,8 @@ class App {
this.authenticateController = new AuthenticateController(this.app);
this.fileController = new FileController(this.app);
this.mapController = new MapController(this.app);
this.prometheusController = new PrometheusController(this.app, this.ioSocketController);
this.debugController = new DebugController(this.app, this.ioSocketController);
this.prometheusController = new PrometheusController(this.app);
this.debugController = new DebugController(this.app);
}
}