fix: remove log

This commit is contained in:
Alessandre Laguierce 2024-12-03 11:54:12 +01:00
parent a540c522f9
commit 9748de5355

View File

@ -58,7 +58,7 @@ const getAllModels = async () => {
const client = new_client(); const client = new_client();
const res = await client.query("SELECT * FROM modeles"); const res = await client.query("SELECT * FROM modeles");
console.log("he");
return Promise.all(res.rows.map(async (el) => { return await db2Model(el) })); return Promise.all(res.rows.map(async (el) => { return await db2Model(el) }));
} }