mirror of
https://github.com/bettercap/bettercap
synced 2025-07-12 16:13:48 -07:00
11 lines
237 B
Go
11 lines
237 B
Go
package modules
|
|
|
|
import "github.com/currantlabs/gatt"
|
|
|
|
var defaultBLEClientOptions = []gatt.Option{
|
|
gatt.MacDeviceRole(gatt.CentralManager),
|
|
}
|
|
|
|
var defaultBLEServerOptions = []gatt.Option{
|
|
gatt.MacDeviceRole(gatt.PeripheralManager),
|
|
}
|