1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-06 19:29:15 +08:00
hybridgroup.gobot/platforms/ble/ble_client_adaptor_windows.go
deadprogram 4b4c52fc32 windows: attemping appveyor build
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-07-10 11:09:05 -05:00

12 lines
198 B
Go

package ble
import (
"errors"
blelib "github.com/currantlabs/ble"
)
func defaultDevice(impl string) (d blelib.Device, err error) {
return nil, errors.New("Not yet implemented for this OS.")
}