Este repositório foi arquivado em 2025-08-14. Você pode visualizar arquivos e cloná-lo, mas não pode fazer alterações, tais como push, abrir issues, pull requests ou comentários.
AutoWhitelist/src/main/java/com/awakenedredstone/autowhitelist/discord/api/GatewayIntents.java
2025-06-14 11:13:17 -03:00

9 linhas
255 B
Java

package com.awakenedredstone.autowhitelist.discord.api;
import net.dv8tion.jda.api.requests.GatewayIntent;
import java.util.List;
public class GatewayIntents {
public static final List<GatewayIntent> BASIC = List.of(GatewayIntent.GUILD_MEMBERS);
}