systemquery/src/subcommands/test-client/meta.mjs

7 lines
203 B
JavaScript

"use strict";
export default function(cli) {
cli.subcommand("test-client", "Start a client to test the encryption protocol")
.argument("port", "Port to connect to the server on", 5101, "integer");
}