homebridge-plugin-asus-vpn
Version:
A switch to on and off the vpn.
13 lines • 475 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsusRouterUsecase = void 0;
class AsusRouterUsecase {
async toggleVpn(asusRouterService, connect) {
return await asusRouterService.toggleVpn(connect);
}
async getVpnConnectionStatus(asusRouterService) {
return await asusRouterService.getVpnConnectionStatus();
}
}
exports.AsusRouterUsecase = AsusRouterUsecase;
//# sourceMappingURL=asus-router.usecase.js.map