mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-27 17:16:49 -04:00
12 lines
189 B
Go
12 lines
189 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package cgroups
|
|
|
|
func Validate() error {
|
|
return nil
|
|
}
|
|
|
|
func CheckCgroups() (kubeletRoot, runtimeRoot string, controllers map[string]bool) {
|
|
return
|
|
}
|