mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-09-27 04:55:53 +08:00
12 lines
142 B
Go
12 lines
142 B
Go
//go:build !(linux || windows || darwin)
|
|
|
|
package tun
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func New(config Options) (Tun, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|