add minecraft server and player lookups
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m28s

This commit is contained in:
Lee
2024-07-06 05:34:50 +01:00
parent 6de1e8b2b1
commit ee7e8b64c5
7 changed files with 231 additions and 0 deletions

View File

@ -0,0 +1,23 @@
package cc.fascinated.bat.features.minecraft;
import cc.fascinated.bat.features.Feature;
import cc.fascinated.bat.features.FeatureProfile;
import cc.fascinated.bat.features.minecraft.command.MinecraftCommand;
import cc.fascinated.bat.service.CommandService;
import lombok.NonNull;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Component;
/**
* @author Fascinated (fascinated7)
*/
@Component
public class MinecraftFeature extends Feature {
@Autowired
public MinecraftFeature(@NonNull ApplicationContext context, @NonNull CommandService commandService) {
super("Minecraft", FeatureProfile.FeatureState.DISABLED, true);
super.registerCommand(commandService, context.getBean(MinecraftCommand.class));
}
}