Files
moby/client/network_connect_opts.go
2025-08-27 07:05:52 -05:00

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"`
}