9 linhas
255 B
Java
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);
|
|
}
|