This repository has been archived on 2023-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
Uloz.to-rychle/index.ts

7 lines
169 B
TypeScript

import { Webserver } from "./webserver";
let webserver = new Webserver;
process.on('uncaughtException', err => {
console.error('There was an uncaught error', err)
});