mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
9 lines
144 B
Go
9 lines
144 B
Go
//go:build !linux
|
|
|
|
package cgroupv2
|
|
|
|
// Enabled returns whether we are running on cgroup v2
|
|
func Enabled() (bool, error) {
|
|
return false, nil
|
|
}
|