forked from Fascinated/Bat
impl basic help command
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
package cc.fascinated.bat.features;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import cc.fascinated.bat.command.BatCommand;
|
||||
import cc.fascinated.bat.command.Category;
|
||||
import cc.fascinated.bat.service.CommandService;
|
||||
import lombok.Getter;
|
||||
import lombok.NonNull;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@ -23,18 +26,13 @@ public abstract class Feature {
|
||||
private final Category category;
|
||||
|
||||
/**
|
||||
* The category of the feature
|
||||
* Registers the command for the feature
|
||||
*
|
||||
* @param commandService The command service
|
||||
* @param command The command to register
|
||||
*/
|
||||
@AllArgsConstructor @Getter
|
||||
public enum Category {
|
||||
GENERAL("General"),
|
||||
MODERATION("Moderation"),
|
||||
SERVER("Server"),
|
||||
BEAT_SABER("Beat Saber");
|
||||
|
||||
/**
|
||||
* The name of the category
|
||||
*/
|
||||
private final String name;
|
||||
public void registerCommand(@NonNull CommandService commandService, @NonNull BatCommand command) {
|
||||
command.setCategory(category);
|
||||
commandService.registerCommand(command);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user