mirror of
https://github.com/bettercap/bettercap
synced 2025-07-05 20:42:09 -07:00
10 lines
218 B
Go
10 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
|
|
}
|