Files
sing-tun/gvisor_stub.go
T
2022-09-08 18:11:26 +08:00

10 lines
129 B
Go

//go:build no_gvisor
package tun
func NewGVisor(
options StackOptions,
) (Stack, error) {
return nil, ErrGVisorNotIncluded
}