systemquery/src/subcommands/agent/meta.mjs

7 lines
213 B
JavaScript
Raw Normal View History

"use strict";
export default function(cli) {
2021-10-01 01:48:22 +00:00
cli.subcommand("agent", "Starts the systemquery agent")
.argument("config", "Specifies the config file location", "/etc/systemquery/systemquery.toml", "string");
}