prototooth/gatts_other.go
Ayke van Laethem 96a2be1571 Add //go:build lines for Go 1.18
This will be needed eventually, so add them now already.
2022-04-19 11:00:08 +02:00

11 lines
215 B
Go

//go:build !linux
// +build !linux
package bluetooth
// Characteristic is a single characteristic in a service. It has an UUID and a
// value.
type Characteristic struct {
permissions CharacteristicPermissions
}