anyproxy/lib/proxy/index.ts
2018-08-31 17:40:30 +08:00

16 lines
448 B
TypeScript

import ProxyCore from './proxyCore';
import ProxyServer from './proxyServer';
import WebInterface from '../webInterface';
import Recorder from '../recorder';
import certMgr from '../certMgr';
module.exports.ProxyCore = ProxyCore;
module.exports.ProxyServer = ProxyServer;
module.exports.ProxyRecorder = Recorder;
module.exports.ProxyWebServer = WebInterface;
module.exports.utils = {
systemProxyMgr: require('../systemProxyMgr'),
certMgr,
};