mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
11 lines
190 B
Go
11 lines
190 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package cgutil
|
|
|
|
import (
|
|
"github.com/hashicorp/go-hclog"
|
|
)
|
|
|
|
func NewCpusetManager(_ string, _ hclog.Logger) CpusetManager { return noopCpusetManager{} }
|