smartproxy/ts/smartproxy.classes.smartproxy.ts
2019-08-21 23:54:55 +02:00

23 lines
410 B
TypeScript

import * as plugins from './smartproxy.plugins';
import * as interfaces from './interfaces';
export class SmartProxy {
public hostCandidates: interfaces.IHostConfig[] = [];
public addHostCandidate(hostCandidate: interfaces.IHostConfig) {
// TODO search for old hostCandidates with that target
this.hostCandidates.push(hostCandidate);
}
async start () {
}
async stop () {
}
}