sing-tun/tun_other.go
2023-02-26 17:11:24 +08:00

11 lines
142 B
Go

//go:build !(linux || windows || darwin)
package tun
import (
"os"
)
func New(config Options) (Tun, error) {
return nil, os.ErrInvalid
}