ADD: mqtt command to supported commands

This commit is contained in:
peteh 2018-12-24 14:52:49 +01:00
parent ebdd973851
commit 055a8a421f

View file

@ -26,6 +26,9 @@ public class Commands {
addCommand("updateAccount", new UpdateAccountCommand()); addCommand("updateAccount", new UpdateAccountCommand());
addCommand("updateGroup", new UpdateGroupCommand()); addCommand("updateGroup", new UpdateGroupCommand());
addCommand("verify", new VerifyCommand()); addCommand("verify", new VerifyCommand());
// mqtt commands
addCommand("mqtt", new MqttCommand());
} }
public static Map<String, Command> getCommands() { public static Map<String, Command> getCommands() {