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