me.schlaubi.commandcord.command.PrefixProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commandCord Show documentation
Show all versions of commandCord Show documentation
A very feature rich framework for discord bot commands written in Java
The newest version!
package me.schlaubi.commandcord.command;
/**
* @author Schlaubi / Michael Rittmeister
*/
public interface PrefixProvider {
/**
* Will be called when guild specified prefixes are enabled
*
* @param guildId Id of the guild where the command is executed
* @return The prefix
*/
String getPrefix(String guildId);
}