18 lines
150 B
Go
18 lines
150 B
Go
|
package gatt
|
||
|
|
||
|
import (
|
||
|
)
|
||
|
|
||
|
type Service struct {
|
||
|
UUID string
|
||
|
}
|
||
|
|
||
|
type Descriptor struct {
|
||
|
UUID string
|
||
|
}
|
||
|
|
||
|
type Characteristic struct {
|
||
|
UUID string
|
||
|
}
|
||
|
|