UNPKG

catproxy

Version:

a node proxy or host change tools

9 lines (8 loc) 236 B
import { isRootCertExits, getRootCertPath } from '../cert/cert'; export default () => (req, res, next) => { if (isRootCertExits()) { res.download(getRootCertPath()); } else { next('没有根证书,请调用命令生成'); } };