add ppsize command
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m16s

This commit is contained in:
Lee
2024-07-06 19:34:03 +01:00
parent e65b7b8232
commit 16bbda57f6
2 changed files with 48 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import cc.fascinated.bat.features.Feature;
import cc.fascinated.bat.features.FeatureProfile;
import cc.fascinated.bat.features.base.commands.botadmin.BotAdminCommand;
import cc.fascinated.bat.features.base.commands.fun.EightBallCommand;
import cc.fascinated.bat.features.base.commands.fun.PPSizeCommand;
import cc.fascinated.bat.features.base.commands.fun.image.ImageCommand;
import cc.fascinated.bat.features.base.commands.general.*;
import cc.fascinated.bat.features.base.commands.general.avatar.AvatarCommand;
@ -42,5 +43,6 @@ public class BaseFeature extends Feature {
super.registerCommand(commandService, context.getBean(FeatureCommand.class));
super.registerCommand(commandService, context.getBean(EightBallCommand.class));
super.registerCommand(commandService, context.getBean(LookupUserCommand.class));
super.registerCommand(commandService, context.getBean(PPSizeCommand.class));
}
}