All checks were successful
continuous-integration/drone/push Build is passing
18 lines
297 B
Java
18 lines
297 B
Java
package wtf.beatrice.hidekobot.commands.base;
|
|
|
|
import net.dv8tion.jda.api.Permission;
|
|
|
|
public class Say
|
|
{
|
|
|
|
private Say()
|
|
{
|
|
throw new IllegalStateException("Utility class");
|
|
}
|
|
|
|
public static Permission getPermission()
|
|
{
|
|
return Permission.MESSAGE_MANAGE;
|
|
}
|
|
}
|