fix: fixed compilation error on macOS (fixes #453)

This commit is contained in:
evilsocket 2019-02-19 22:48:08 +01:00
commit 87171cbd1d
No known key found for this signature in database
GPG key ID: 1564D7F30393A456

View file

@ -48,3 +48,7 @@ func (b *BLE) MarshalJSON() ([]byte, error) {
}
return json.Marshal(doc)
}
func (b *BLE) EachDevice(cb func(mac string, d *BLEDevice)) {
}