feat: add logging and error handling

This commit is contained in:
Axel Cocat 2022-02-27 17:46:38 +01:00
parent f324ca45ff
commit 56c0fed144
10 changed files with 720 additions and 49 deletions

5
src/index.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
declare module Express {
export interface Request {
id: string;
}
}