mirror of
https://github.com/bettercap/bettercap
synced 2025-07-08 05:51:37 -07:00
17 lines
244 B
Go
17 lines
244 B
Go
package ble
|
|
|
|
import (
|
|
"github.com/bettercap/gatt"
|
|
)
|
|
|
|
var defaultBLEClientOptions = []gatt.Option{
|
|
gatt.MacDeviceRole(gatt.CentralManager),
|
|
}
|
|
|
|
/*
|
|
|
|
var defaultBLEServerOptions = []gatt.Option{
|
|
gatt.MacDeviceRole(gatt.PeripheralManager),
|
|
}
|
|
|
|
*/
|