total_1ère

This commit is contained in:
2026-07-20 16:33:04 +02:00
parent dd49ba357b
commit d49cf88d99
275 changed files with 63607 additions and 5599 deletions

12
modules/sleep.js Normal file
View File

@@ -0,0 +1,12 @@
// POUR EVITER DE DÉPASSER LE QUOTA DE GOOGLE API REQUEST PER MINUTE
// ON ATTENDS QUELQUES SECONDES
const wait = function wait(milliseconds){
return new Promise(resolve => {
setTimeout(resolve, milliseconds);
console.log('Dans le sleep');
});
};
module.exports = {
wait
}