require('dotenv').config() const run = require("./fonctions/run"); tokens = process.env.TOKENS.split(',') const runAsync = async () => { Promise.all(tokens.map(token => run(token))); }; runAsync();