compilation not working

This commit is contained in:
2023-08-13 16:12:16 +00:00
parent 3a29c5cd88
commit 442b894217
5 changed files with 50 additions and 38 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ type RequestBody<T> = Request<{}, {}, T>;
router.post(
"/kill",
validateBody(typia.createValidate<KillData>()),
// validateBody(typia.createValidate<KillData>()),
(req: RequestBody<KillData>, res: Response) => {
void (async () => {
const host_id = res.locals.host_id;
@@ -190,7 +190,7 @@ router.post(
router.post(
"/match",
validateBody(typia.createValidate<MatchData>()),
// validateBody(typia.createValidate<MatchData>()),
(req: RequestBody<MatchData>, res: Response) => {
void (async () => {
const host_id = res.locals.host_id;