8 lines
83 B
Go
8 lines
83 B
Go
|
|
package netlink
|
||
|
|
|
||
|
|
type NetLink struct{}
|
||
|
|
|
||
|
|
func New() *NetLink {
|
||
|
|
return &NetLink{}
|
||
|
|
}
|