12 lines
154 B
Go
12 lines
154 B
Go
package tenus
|
|
|
|
import (
|
|
"github.com/docker/libcontainer/netlink"
|
|
)
|
|
|
|
type NetworkOptions struct {
|
|
IpAddr string
|
|
Gw string
|
|
Routes []netlink.Route
|
|
}
|