Søren Rasmussen
07a23c1845
Some checks reported errors
continuous-integration/drone/push Build encountered an error
14 lines
194 B
Go
14 lines
194 B
Go
package att
|
|
|
|
import "github.com/JuulLabs-OSS/ble"
|
|
|
|
// attr is a BLE attribute.
|
|
type attr struct {
|
|
h uint16
|
|
endh uint16
|
|
typ ble.UUID
|
|
|
|
v []byte
|
|
rh ble.ReadHandler
|
|
wh ble.WriteHandler
|
|
}
|