smartvhost/ts/smartvhost.classes.smartvhost.ts

14 lines
208 B
TypeScript
Raw Normal View History

2020-02-06 22:41:25 +00:00
import * as plugins from './smartvhost.plugins';
export class SmartVHost {
public smartproxy = new plugins.smartproxy.SmartProxy();
public async start() {
await
}
public async stop() {
}
}