blob: a95237b1c89a1f8e2b7023582512c9559f22f719 [file] [log] [blame]
package com.matter.controller.commands.pairing;
import chip.devicecontroller.ChipDeviceController;
import com.matter.controller.commands.common.CredentialsIssuer;
public final class PairCodeCommand extends PairingCommand {
public PairCodeCommand(ChipDeviceController controller, CredentialsIssuer credsIssue) {
super(controller, "code", PairingModeType.CODE, PairingNetworkType.NONE, credsIssue);
}
@Override
protected void runCommand() {}
}