Files
gluetun/internal/tun/tun_unspecified.go
T

13 lines
155 B
Go

//go:build !linux && !darwin
package tun
import (
"fmt"
"runtime"
)
func Setup() error {
return fmt.Errorf("not implemented for %s", runtime.GOOS)
}