mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
12 lines
191 B
Go
12 lines
191 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !linux
|
|
|
|
package cgroupslib
|
|
|
|
// GetMode returns OFF on non-Linux systems.
|
|
func GetMode() Mode {
|
|
return OFF
|
|
}
|