15 lines
194 B
Go
15 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
|
||
|
}
|