mirror of
https://github.com/bettercap/bettercap.git
synced 2024-11-08 06:30:13 -08: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
|
|
}
|