mirror of
https://github.com/arthur-pbty/selfbot-discord.git
synced 2026-06-20 05:42:10 +02:00
init sb
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
require('dotenv').config()
|
||||
const run = require("./fonctions/run");
|
||||
|
||||
const runAsync = async () => {
|
||||
if (process.env.TOKENS) {
|
||||
const tokens = process.env.TOKENS.split(',');
|
||||
Promise.all(tokens.map(token => run(token)));
|
||||
} else {
|
||||
console.error("Environment variable 'TOKENS' is not defined.");
|
||||
}
|
||||
};
|
||||
|
||||
runAsync();
|
||||
Reference in New Issue
Block a user