mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
15 lines
261 B
Go
15 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
|
|
}
|