fix: fixed compilation on windows

This commit is contained in:
Simone Margaritelli 2024-08-16 15:30:19 +02:00
commit 7f22425dcc
3 changed files with 32 additions and 16 deletions

View file

@ -0,0 +1,10 @@
//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
}