mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-05-10 14:58:27 +00:00
16 lines
448 B
TypeScript
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,
|
|
};
|