mirror of
https://github.com/containers/podman.git
synced 2025-09-24 15:25:41 +08:00

* If possible, update each dependency to the latest available version. * Use releases over commit IDs and avoid vendoring branches. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
16 lines
219 B
Go
16 lines
219 B
Go
// +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
|
|
}
|