Signed-off-by: Lei Jitang <leijitang@huawei.com> Upstream-commit: 2b0927c9ac23b66d8a05761801d1c5f882ba8dfb Component: engine
17 lines
307 B
Go
17 lines
307 B
Go
// +build experimental
|
|
|
|
package main
|
|
|
|
import (
|
|
"sort"
|
|
|
|
"github.com/docker/docker/cli"
|
|
)
|
|
|
|
func init() {
|
|
dockerCommands = append(dockerCommands, cli.Command{Name: "network", Description: "Network management"})
|
|
|
|
//Sorting logic required here to pass Command Sort Test.
|
|
sort.Sort(byName(dockerCommands))
|
|
}
|