mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-06-12 14:28:15 +03:00
12 lines
119 B
Go
12 lines
119 B
Go
//go:build !linux
|
|
|
|
package tun
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func Open(name string) (uintptr, error) {
|
|
return 0, os.ErrInvalid
|
|
}
|