mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
Moving from Go module v4 to v5 prepares us for public releases. Move done using gomove [1] as with the v3 and v4 moves. [1] https://github.com/KSubedi/gomove Signed-off-by: Matt Heon <mheon@redhat.com>
28 lines
856 B
Go
28 lines
856 B
Go
package system
|
|
|
|
import (
|
|
"github.com/containers/podman/v5/cmd/podman/registry"
|
|
"github.com/containers/podman/v5/cmd/podman/validate"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
// ContextCmd skips creating engines (PersistentPreRunE/PersistentPostRunE are No-Op's) since
|
|
// sub-commands will obtain connection information to said engines
|
|
ContextCmd = &cobra.Command{
|
|
Use: "context",
|
|
Short: "Manage remote API service destinations",
|
|
Long: `Manage remote API service destination information in podman configuration`,
|
|
PersistentPreRunE: validate.NoOp,
|
|
RunE: validate.SubCommandExists,
|
|
PersistentPostRunE: validate.NoOp,
|
|
Hidden: true,
|
|
TraverseChildren: false,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: ContextCmd,
|
|
})
|
|
}
|