add commands and events

This commit is contained in:
Tutur33
2024-02-22 22:46:34 +01:00
parent bacdf04b4d
commit 31d7e23f14
7 changed files with 122 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
require('dotenv').config()
const run = require("./fonctions/run");
tokens = process.env.TOKENS.split(',')
const runAsync = async () => {
Promise.all(tokens.map(token => run(token)));
};
runAsync();