mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-18 22:25:41 +00: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
|
|
}
|