mirror of
https://github.com/arthur-pbty/gestion-perso.git
synced 2026-06-04 15:56:43 +02:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
require('dotenv').config()
|
|
const run = require("./fonctions/run");
|
|
tokens = process.env.TOKENS.split(',')
|
|
|
|
const runAsync = async () => {
|
|
Promise.all(tokens.map(token => run(token)));
|
|
};
|
|
|
|
runAsync(); |