UNPKG

dalao-proxy

Version:

An expandable HTTP proxy based on the plug-in system for frontend developers with request caching request mock and development!

13 lines (10 loc) 343 B
const { installRootCA } = require("../../cert"); module.exports = function startCommand(program, register) { program .command('ca') .description('Install system trusted certificate') .action(async function (command) { await installRootCA(); process.exit(0); }); };