Esempio n. 1
0
func init() {
	device.AddDeviceSetupCallback(startDeviceLoop)
}
Esempio n. 2
0
// add the VNC loop method to device setup
func init() {
	device.AddDeviceSetupCallback(func(dev *device.Device) error {
		startDeviceLoop(dev)
		return nil
	})
}