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