mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-14 04:38:28 +10:00
10 lines
175 B
Go
10 lines
175 B
Go
//go:build !linux && !darwin
|
|
|
|
package libbox
|
|
|
|
import "os"
|
|
|
|
func SubscribeNeighborTable(_ NeighborUpdateListener) (*NeighborSubscription, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|