mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-22 18:41:37 +00:00
Moves vendoring over to Go modules. Fixes issues found by Go Vet in Go 1.16 Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
16 lines
219 B
Go
Vendored
16 lines
219 B
Go
Vendored
// +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
|
|
}
|