mirror of
https://github.com/sigcn/pg.git
synced 2025-10-07 17:51:58 +08:00
13 lines
196 B
Go
13 lines
196 B
Go
//go:build !linux && !windows && !darwin
|
|
|
|
package netlink
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func RouteSubscribe(ctx context.Context, ch chan<- RouteUpdate) error {
|
|
return errors.ErrUnsupported
|
|
}
|