mirror of
https://github.com/rancher/plugins.git
synced 2025-09-15 01:43:16 +00:00
17 lines
237 B
Go
17 lines
237 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package netlink
|
|
|
|
func FouAdd(f Fou) error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func FouDel(f Fou) error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func FouList(fam int) ([]Fou, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|