me.schlaubi.commandcord.CommandCord 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;
import me.schlaubi.commandcord.core.CommandManager;
/**
* @author Schlaubi / Michael Rittmeister
*/
public class CommandCord {
public static final String VERSION = "2.0.0";
public static final String AUTHOR = "Schlaubi";
public static final String LICENSE = "GPL-3.0";
public static final String GITHUB_URL = "http://github.com/DRschlaubi/commandCord";
public static final String WEBSITE = "http://schlaubi.me/commandCord";
private static CommandManager instance;
public static CommandManager getInstance() {
return instance;
}
public static void setInstance(CommandManager manager) {
instance = manager;
}
public static void main(String[] args) {
throw new RuntimeException("This library can not be run standalone");
}
}