mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-21 18:11:35 +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>
26 lines
480 B
Go
Vendored
26 lines
480 B
Go
Vendored
// +build !linux
|
|
|
|
package netlink
|
|
|
|
type GenlOp struct{}
|
|
|
|
type GenlMulticastGroup struct{}
|
|
|
|
type GenlFamily struct{}
|
|
|
|
func (h *Handle) GenlFamilyList() ([]*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func GenlFamilyList() ([]*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func (h *Handle) GenlFamilyGet(name string) (*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func GenlFamilyGet(name string) (*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|