If I have 2 or more clients on a single IP, will this be considered API spam even though each client has a different token?
import { Client } from "discord.js";const client1 = new Client(...);const client2 = new Client(...);client1.login(process.env["FIRST_TOKEN"]);client2.login(process.env["SECOND_TOKEN"]);
import { Client } from "discord.js";const client1 = new Client(...);const client2 = new Client(...);client1.login(process.env["FIRST_TOKEN"]);client2.login(process.env["SECOND_TOKEN"]);