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