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
|
|
}
|