workadventure/uploader/src/App.ts
2020-12-09 21:29:29 +01:00

17 lines
361 B
TypeScript

// lib/app.ts
import {FileController} from "./Controller/FileController";
import {App as uwsApp} from "./Server/sifrr.server";
class App {
public app: uwsApp;
public fileController: FileController;
constructor() {
this.app = new uwsApp();
this.fileController = new FileController(this.app);
}
}
export default new App().app;