sing-tun/gvisor_other.go
2022-09-08 18:11:26 +08:00

9 lines
163 B
Go

//go:build !no_gvisor && !(linux || windows || darwin)
package tun
func NewGVisor(
options StackOptions,
) (Stack, error) {
return nil, ErrGVisorUnsupported
}