Update oputil_main.js

This commit is contained in:
Carl Hultay
2024-11-22 22:13:09 -05:00
committed by GitHub
parent b2ad30c014
commit 0f7330a377

View File

@@ -10,6 +10,7 @@ const handleFileBaseCommand = require('./oputil_file_base.js').handleFileBaseCom
const handleMessageBaseCommand =
require('./oputil_message_base.js').handleMessageBaseCommand;
const handleConfigCommand = require('./oputil_config.js').handleConfigCommand;
const handleSSHKeyCommand = require('./oputil_ssh_key.js').handleSSHKeyCommand;
const getHelpFor = require('./oputil_help.js').getHelpFor;
module.exports = function () {
@@ -32,6 +33,8 @@ module.exports = function () {
return handleFileBaseCommand();
case 'mb':
return handleMessageBaseCommand();
case 'ssh':
return handleSSHKeyCommand();
default:
return printUsageAndSetExitCode(getHelpFor('General'), ExitCodes.BAD_COMMAND);
}