mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 12:49:36 +00:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
27 lines
578 B
Go
27 lines
578 B
Go
package network
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"go.podman.io/podman/v6/cmd/podman/registry"
|
|
"go.podman.io/podman/v6/cmd/podman/validate"
|
|
)
|
|
|
|
var (
|
|
// Pull in configured json library
|
|
json = registry.JSONLibrary()
|
|
|
|
// Command: podman _network_
|
|
networkCmd = &cobra.Command{
|
|
Use: "network",
|
|
Short: "Manage networks",
|
|
Long: "Manage networks",
|
|
RunE: validate.SubCommandExists,
|
|
}
|
|
containerConfig = registry.PodmanConfig().ContainersConfDefaultsRO
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: networkCmd,
|
|
})
|
|
}
|