1
0
mirror of https://github.com/containers/podman.git synced 2026-02-05 06:45:31 +01:00
Files
podman/libpod/runtime_pod_freebsd.go
2025-10-01 10:42:08 -04:00

16 lines
261 B
Go

//go:build !remote
package libpod
import (
spec "github.com/opencontainers/runtime-spec/specs-go"
)
func (r *Runtime) platformMakePod(_ *Pod, _ *spec.LinuxResources) (string, error) {
return "", nil
}
func (p *Pod) removePodCgroup() error {
return nil
}