mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
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))
|
|
}
|