mirror of
https://github.com/sigcn/pg.git
synced 2025-09-27 13:52:06 +08:00
17 lines
226 B
Go
17 lines
226 B
Go
//go:build !linux && !windows && !darwin
|
|
|
|
package netlink
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func SetupLink(string, string) error {
|
|
// noop
|
|
return nil
|
|
}
|
|
|
|
func LinkByIndex(index int) (*Link, error) {
|
|
return nil, errors.ErrUnsupported
|
|
}
|