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

8 lines
194 B
TypeScript
Raw Permalink Normal View History

2022-02-23 19:50:47 +01:00
import { Webserver } from "./webserver";
export let debug = true;
2022-02-23 19:50:47 +01:00
let webserver = new Webserver;
2022-02-23 23:26:12 +01:00
process.on('uncaughtException', err => {
console.error('There was an uncaught error', err)
2022-03-14 20:18:08 +01:00
});