mirror of
https://github.com/bettercap/bettercap.git
synced 2025-03-12 04:36:03 -07:00
11 lines
218 B
Go
11 lines
218 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package graph
|
|
|
|
import "github.com/bettercap/bettercap/v2/network"
|
|
|
|
func (mod *Module) createBLEServerGraph(dev *network.BLEDevice) (*Node, bool, error) {
|
|
return nil, false, nil
|
|
}
|