spiegel_podman/cmd/podman/containers/container.go
Brent Baude 2cc3be7332
RUN-4539: Change podman module paths
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>
2026-04-22 14:02:25 -05:00

29 lines
664 B
Go

package containers
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 _container_
containerCmd = &cobra.Command{
Use: "container",
Short: "Manage containers",
Long: "Manage containers",
TraverseChildren: true,
RunE: validate.SubCommandExists,
}
containerConfig = registry.PodmanConfig().ContainersConfDefaultsRO
)
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Command: containerCmd,
})
}