mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
11 lines
286 B
Go
11 lines
286 B
Go
package client
|
|
|
|
import "github.com/moby/moby/api/types/network"
|
|
|
|
// NetworkConnectOptions represents the data to be used to connect a container to the
|
|
// network.
|
|
type NetworkConnectOptions struct {
|
|
Container string
|
|
EndpointConfig *network.EndpointSettings `json:",omitempty"`
|
|
}
|