mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
9 lines
132 B
Go
9 lines
132 B
Go
//go:build !linux && !windows
|
|
|
|
package tun
|
|
|
|
import "os"
|
|
|
|
func NewMonitor() (InterfaceMonitor, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|