mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2b0927c9ac
Signed-off-by: Lei Jitang <leijitang@huawei.com>
16 lines
307 B
Go
16 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))
|
|
}
|