mirror of
https://github.com/sigcn/pg.git
synced 2025-09-27 10:42:08 +08:00
13 lines
194 B
Go
13 lines
194 B
Go
//go:build !linux && !windows && !darwin
|
|
|
|
package netlink
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func AddrSubscribe(ctx context.Context, ch chan<- AddrUpdate) error {
|
|
return errors.ErrUnsupported
|
|
}
|