mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
Base structure for vnc plugin.
This commit is contained in:
@@ -20,6 +20,7 @@ module.exports = function(options) {
|
||||
.dependency(require('./plugins/solo'))
|
||||
.dependency(require('./plugins/screen/stream'))
|
||||
.dependency(require('./plugins/screen/capture'))
|
||||
.dependency(require('./plugins/vnc'))
|
||||
.dependency(require('./plugins/service'))
|
||||
.dependency(require('./plugins/browser'))
|
||||
.dependency(require('./plugins/store'))
|
||||
|
||||
10
lib/units/device/plugins/vnc.js
Normal file
10
lib/units/device/plugins/vnc.js
Normal file
@@ -0,0 +1,10 @@
|
||||
var syrup = require('stf-syrup')
|
||||
var Promise = require('bluebird')
|
||||
var _ = require('lodash')
|
||||
|
||||
var logger = require('../../../util/logger')
|
||||
|
||||
module.exports = syrup.serial()
|
||||
.define(function(options) {
|
||||
|
||||
})
|
||||
Reference in New Issue
Block a user