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