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