spiegel_podman/cmd/podman/farm/farm.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

21 lines
510 B
Go

package farm
import (
"github.com/spf13/cobra"
"go.podman.io/podman/v6/cmd/podman/registry"
"go.podman.io/podman/v6/cmd/podman/validate"
)
// Command: podman _farm_
var farmCmd = &cobra.Command{
Use: "farm",
Short: "Farm out builds to remote machines",
Long: "Farm out builds to remote machines that podman can connect to via podman system connection",
RunE: validate.SubCommandExists,
}
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Command: farmCmd,
})
}