smartvhost/ts/smartvhost.classes.smartvhost.ts
2020-02-06 22:41:25 +00:00

14 lines
208 B
TypeScript

import * as plugins from './smartvhost.plugins';
export class SmartVHost {
public smartproxy = new plugins.smartproxy.SmartProxy();
public async start() {
await
}
public async stop() {
}
}