spiegel_podman/cmd/podman/system/connection.go
Paul Holzinger 5c1ed12d8d
enable gofumpt formatter
Based on our discussion gofumpt won the vote so use that one via
golangci-lint.

https://github.com/containers/podman/discussions/27291

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-11-11 12:32:46 +01:00

26 lines
847 B
Go

package system
import (
"github.com/containers/podman/v6/cmd/podman/registry"
"github.com/containers/podman/v6/cmd/podman/validate"
"github.com/spf13/cobra"
)
// ConnectionCmd skips creating engines (PersistentPreRunE/PersistentPostRunE are No-Op's) since
// sub-commands will obtain connection information to said engines
var ConnectionCmd = &cobra.Command{
Use: "connection",
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,
TraverseChildren: false,
}
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Command: ConnectionCmd,
Parent: systemCmd,
})
}