Cleanup of useless files
This commit is contained in:
parent
10ee00e08a
commit
5d188e51b2
36 changed files with 29 additions and 684 deletions
|
@ -1,26 +1,16 @@
|
|||
// lib/app.ts
|
||||
import {AuthenticateController} from "./Controller/AuthenticateController"; //TODO fix import by "_Controller/..."
|
||||
import {MapController} from "./Controller/MapController";
|
||||
import {PrometheusController} from "./Controller/PrometheusController";
|
||||
import {FileController} from "./Controller/FileController";
|
||||
import {DebugController} from "./Controller/DebugController";
|
||||
import {App as uwsApp} from "./Server/sifrr.server";
|
||||
|
||||
class App {
|
||||
public app: uwsApp;
|
||||
//public authenticateController: AuthenticateController;
|
||||
//public fileController: FileController;
|
||||
//public mapController: MapController;
|
||||
public prometheusController: PrometheusController;
|
||||
private debugController: DebugController;
|
||||
|
||||
constructor() {
|
||||
this.app = new uwsApp();
|
||||
|
||||
//create socket controllers
|
||||
//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.debugController = new DebugController(this.app);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue