mirror of
https://github.com/qdm12/gluetun.git
synced 2026-06-17 17:04:01 +02:00
fix(wireguard): skip tun device checks when using kernelspace
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
//go:build !linux && !darwin
|
||||
|
||||
package tun
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func Setup() error {
|
||||
return fmt.Errorf("not implemented for %s", runtime.GOOS)
|
||||
}
|
||||
Reference in New Issue
Block a user