mirror of
https://github.com/fosrl/olm.git
synced 2026-02-08 05:56:41 +00:00
16 lines
354 B
Go
16 lines
354 B
Go
//go:build !windows
|
|
|
|
package olm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.zx2c4.com/wireguard/tun"
|
|
)
|
|
|
|
// GetInterfaceGUIDString is only implemented for Windows
|
|
// This stub is provided for compilation on other platforms
|
|
func GetInterfaceGUIDString(tunDevice tun.Device) (string, error) {
|
|
return "", fmt.Errorf("GetInterfaceGUIDString is only supported on Windows")
|
|
}
|