smartproxy/ts/smartproxy.classes.router.ts

9 lines
172 B
TypeScript
Raw Normal View History

2019-08-20 16:42:52 +00:00
import * as plugins from './smartproxy.plugins';
2019-08-20 17:02:13 +00:00
export class SmartproxyRouter {
2019-08-21 01:14:42 +00:00
public routeReq(req: plugins.http.IncomingMessage) {
return 'lossless.gmbh';
2019-08-20 17:02:13 +00:00
}
}