Skip to content

Commit

Permalink
- Fixed build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lmartorella authored and sethterashima committed Oct 10, 2024
1 parent d472dfc commit 6fcdc7d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkg/connector/ble/device_windows.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package ble

import (
"errors"
"github.com/go-ble/ble"
)

func newDevice() (ble.Device, error) {
return nil, errors.New("Not supported on Windows")
}

0 comments on commit 6fcdc7d

Please sign in to comment.