add prettier

This commit is contained in:
2022-10-10 17:01:31 +02:00
parent 868b46317d
commit 63478aa887
21 changed files with 152 additions and 93 deletions

View File

@ -1,9 +1,9 @@
import { RequestHandler } from "express";
import { randomUUID } from "crypto";
import { RequestHandler } from 'express';
import { randomUUID } from 'crypto';
export function BeforeEach(): RequestHandler {
return (req, res, next) => {
req.headers["request-id"] = randomUUID();
req.headers['request-id'] = randomUUID();
next();
}
}
};
}