14 lines
208 B
TypeScript
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() {
|
||
|
|
||
|
}
|
||
|
}
|