mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
929f2c2f40
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
16 lines
409 B
Go
16 lines
409 B
Go
// +build experimental
|
|
|
|
package client
|
|
|
|
import (
|
|
"os"
|
|
|
|
nwclient "github.com/docker/libnetwork/client"
|
|
)
|
|
|
|
// CmdNetwork is used to create, display and configure network endpoints.
|
|
func (cli *DockerCli) CmdNetwork(args ...string) error {
|
|
nCli := nwclient.NewNetworkCli(cli.out, cli.err, nwclient.CallFunc(cli.callWrapper))
|
|
args = append([]string{"network"}, args...)
|
|
return nCli.Cmd(os.Args[0], args...)
|
|
}
|