blob: 4296df73b9cef55e3a84dbda1b3b17e32d4eb2d5 [file] [log] [blame]
package com.matter.controller.commands.pairing;
import com.matter.controller.commands.common.CredentialsIssuer;
public final class PairEthernetCommand extends PairingCommand {
public PairEthernetCommand(CredentialsIssuer credsIssue) {
super("ethernet", PairingModeType.ETHERNET, PairingNetworkType.ETHERNET, credsIssue);
}
@Override
protected void runCommand() {}
}