blob: 3eb299b51b0940c94698766ebe3ceff90f1b7421 [file] [log] [blame]
// +build !linux
package proximity
import "fmt"
// NewBluetoothScanner always returns (nil, <error>) as bluetooth scanners
// are not supported on this platform.
func NewBluetoothScanner() (Scanner, error) {
return nil, fmt.Errorf("bluetooth scanner not yet supported")
}