create function findValue

This commit is contained in:
joseph le 2023-11-23 15:48:50 +07:00
parent 1c38d28b57
commit c53ef4057d
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ Route.post("/api/find-value", async ({ request, response }) => {
}
console.log("stdout ", stdout)
setTimeout(() => {
response.status(200).send(stdout.toString());
response.status(200).send(stdout.length);
}, 2000);
});
} catch (error) {