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
Raw Normal View History

2022-02-23 19:50:47 +01:00
import { Webserver } from "./webserver";
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
});